Forum

Velouria
@debaser
Moderator
Member
Joined: Nov 1, 2018
Last seen: Jun 10, 2026
Topics: 0 / Replies: 841
Reply
RE: Search for Merged cells and unmerge them

You can unmerge all the cells in the column at once. If you need to specifically find merged cells, unmerge them and then populate them with the origi...

3 years ago
Reply
RE: VBA Emails hard code sheet & template name

Set xMItem = xOTApp.CreateItem(0) should be: Set xMItem = xOTApp.CreateItemFromTemplate(mailTemplate) I suspect (hope) Outlook will not ...

3 years ago
Forum
Reply
RE: Using GETPIVOTDATA in a Pivot Table

Replace your current GETPIVOTDATA(...) section in the relevant formula(s) with IFERROR(GETPIVOTDATA(...),0)

3 years ago
Reply
RE: Using GETPIVOTDATA in a Pivot Table

Use IFERROR: =IFERROR(GETPIVOTDATA(....),0)

3 years ago
Reply
RE: Stop screen flickering

You also don't need separate loops (especially as one of them is a repeat of a previous one): Sub Copyfrom_Workbook_Another() Dim Wb1, Wb2 As ...

3 years ago
Forum
Reply
RE: Power Pivot formula in Power query

Sure - you can do something like this: let Source = Excel.CurrentWorkbook(){[Name="Table1"]}[Content], RenamedColumns = Table.TransformColumnN...

3 years ago
Forum
Reply
RE: Power Pivot formula in Power query

You could do something like this: let Source = Excel.CurrentWorkbook(){[Name="Table1"]}[Content], #"Duplicated Column" = Table.DuplicateColumn...

3 years ago
Forum
Reply
RE: VBA code to check whether Excel Table was created by user or via Power Query?

If you want to test if the table is just a range on a worksheet rather than queried from elsewhere, you can use something like: If Activecell.ListO...

3 years ago
Forum
Reply
RE: Formula working in Power Pivot but working in Power Bi

Are you sure you're using the same fields in the matrix in PowerBI as in your PP pivot table? Can't really tell much from those pictures.

3 years ago
Forum
Reply
RE: Add Column with Grouping Order

You could do something simple like this then: let Source = Excel.CurrentWorkbook(){[Name="Matchups"]}[Content], #"Changed Type" = Table.Transf...

3 years ago
Forum
Reply
RE: Trouble with IF - Token Literal expected error

No problem - must have been gremlins. 😉

3 years ago
Forum
Reply
RE: Trouble with IF - Token Literal expected error

The syntax you posted is fine - where is the debugger showing the error point?

3 years ago
Forum
Reply
RE: Add Column with Grouping Order

Hi, A couple of questions if I may: Does it actually matter what the group numbers are, as long as the grouping works? Also, do you actually ...

3 years ago
Forum
Reply
RE: IF and Max Formula through VBA

Please remember the forum rules on cross-posting and provide the links in future. Thanks. stackoverflow.com/questions/75895739/if-and-max-form...

3 years ago
Forum
Reply
RE: Using Table.ReplaceValue with Text.Combine to do an in place concatenation fails if target column is null

I didn't say Table.ReplaceValue I said Replacer.ReplaceValue instead of Replacer.ReplaceText, which you are using now 😉 #"Step 1" = Table.Re...

3 years ago
Forum
Page 15 / 57
0