Forum

Velouria
@debaser
Moderator
Member
Joined: Nov 1, 2018
Last seen: May 22, 2025
Topics: 0 / Replies: 838
Reply
RE: Using GETPIVOTDATA in a Pivot Table

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

2 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 ...

2 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...

2 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...

2 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...

2 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.

2 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...

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

No problem - must have been gremlins. 😉

2 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?

2 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 ...

2 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...

2 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...

2 years ago
Forum
Reply
RE: Exact Match searching, NOT partial.

Your match function will stop at the first match it finds, so you need to make sure your table has the most specific items first - eg January February...

2 years ago
Reply
RE: Removing columns in Power BI source file

Remove the #Changed Type step - it refers to all the columns.

2 years ago
Forum
Reply
RE: VBA to Have Template file remain Open after Copy is Saved & Closed

You haven't posted the error, or the full current code. SaveCopyAs will not close the current workbook but it will leave it in the same state it was i...

2 years ago
Forum
Page 15 / 56