Forum

Velouria
@debaser
Moderator
Member
Joined: Nov 1, 2018
Last seen: May 22, 2025
Topics: 0 / Replies: 838
Reply
RE: string as replace for column

If your rows are all next to each other (or even just evenly spaced out) you could also add a loop to makro1: Sub Makro1(ByVal y as string, By...

3 years ago
Forum
Reply
Reply
RE: Find and Replace problem

Use <uI style="*/uI> in the find box and leave the replace box blank.

3 years ago
Reply
RE: index vs offset in dynamic names ranges

If you're using syntax like $A$1:INDEX(...), with the INDEX on one or both sides of the colon, then it is semi-volatile which means that it will recal...

3 years ago
Reply
RE: Loading Table from the web with lists within

I used a function to expand any lists in the column (and occasionally, lists within those lists). I'll have to have a look at the web page output and ...

3 years ago
Reply
RE: Loading Table from the web with lists within

Is this the kind of thing you wanted?

3 years ago
Reply
RE: How to Get an Image from my Subfolder and Display it in a Shapes

Well that escalated quickly! 😉 Just FYI, it's really not a great idea to just put an error handler that exits silently at the top of your code - m...

3 years ago
Forum
Reply
RE: How to Get an Image from my Subfolder and Display it in a Shapes

Shapes don't have a LoadPicture method. You'd need: ActiveSheet.Shapes("Rettangolo con angoli arrotondati 2").Fill.UserPicture ActiveWorkbook.Path ...

3 years ago
Forum
Reply
RE: Format Dates Etc

You have a missing reference. With that project active in the VBE, click Tools - References and look for one (or more) of the checked references that ...

3 years ago
Forum
Reply
RE: INDIRECT drop-down list

You could just add SUBSTITUTE to your INDIRECT instead of replacing the spaces in the actual text - eg: =INDIRECT(SUBSTITUTE(A2," ","_"))

3 years ago
Reply
RE: How to filter a measure

You could use a measure just for active sales - eg =CALCULATE([Total sales],FILTER(dimAccounts,[Year selected]>=max(dimAccounts[Year - star...

3 years ago
Forum
Reply
RE: Automatically Create Slicers

The method seems quite temperamental about its argument types. I'd suggest: Dim pf As PivotField For Each pf In ptObject.RowFields ' Create s...

3 years ago
Forum
Reply
RE: Want to activate corresponding row on the sheet from double clicking on the row in the listbox from my search results

Why do you have 8 different Case statements in ClearForm that do basically the same thing? A simple solution to your issue would be to add the...

3 years ago
Forum
Reply
RE: Automatically Create Slicers

Your workbook didn't attach...

3 years ago
Forum
Reply
RE: Automatically Create Slicers

This is still unnecessary: If slc.Name = strSlicerName Then Set slc = ActiveWorkbook.SlicerCaches(slc.Index): Exit For slc already is the slicer...

3 years ago
Forum
Page 23 / 56