Forum

Velouria
@debaser
Moderator
Member
Joined: Nov 1, 2018
Last seen: Jun 11, 2026
Topics: 0 / Replies: 841
Reply
RE: Getpivotdata and Time values

The GETPIVOTDATA formula works if you use the Hours Formula field in the pivot. I'm not really sure what the issue was with that?

5 years ago
Forum
Reply
RE: Grouping columns based on specific value

There are several ways you could achieve it. For instance, you could create one query on the table that filters for topology, then merge that query wi...

5 years ago
Forum
Reply
RE: Can VBA determine if row headers exist

How would you distinguish a header row from a data row specifically?

5 years ago
Forum
Reply
RE: Filter for Multiple Values in a Column

You could also put those values into a column of cells and use that as criteria in an advanced filter.

5 years ago
Reply
RE: Adding column and moving it to the beginning of table

It's expecting a list of items to remove so use {"Col3"} instead of just "Col3": let Source = Excel.CurrentWorkbook(){[Name="Table1"]}[Content...

5 years ago
Forum
Reply
RE: Error Message received with Text.Replace

The prior step works fine for me (after creating an appropriate source file for the state list). For a direct in-place replacement, you could ...

5 years ago
Forum
Reply
RE: Error Message received with Text.Replace

Shouldn't the last step read something like: = Table.AddColumn(#"Added Custom", "Address2", each Text.Replace([Address], [States], " ")) ...

5 years ago
Forum
Reply
RE: Adding column and moving it to the beginning of table

There are probably simpler solutions, but you could get a list of the column names, remove the last one (the new column you added) and then combine th...

5 years ago
Forum
Reply
RE: Power Query_ Formatting Zip Codes

Make sure the Zip field loads as text, then you can use something like: = Table.AddColumn(#"Changed Type", "CleanZip", each if Text.Length([Address...

5 years ago
Forum
Reply
RE: FolderExists function of the FileSystemObject

I'd suspect the problem lies elsewhere (in the code you didn't post) since I can't see how you'd get a file count for a non-existent folder.

5 years ago
Forum
Reply
RE: Run-time error '1004': Unable to set the Visible Property of the Worksheet class - PLEASE HELP

They are visible, just not active - you still have the front sheet selected which is entirely grey. Also, the sheet tabs have been hidden so there is ...

5 years ago
Forum
Reply
Reply
RE: Run-time error '1004': Unable to set the Visible Property of the Worksheet class - PLEASE HELP

The Activate code in the form protects the workbook. That means that you can't then change the visibility of any sheet unless you unprotect the workbo...

5 years ago
Forum
Reply
RE: Problems when trying to write this formula =AP6:address(6;counta(AP6:BJ6))

You've used a colon instead of a semicolon in the name definition - it should read: =$AP$6:index($6:$6;counta($6:$6)+1))

5 years ago
Reply
RE: Problems when trying to write this formula =AP6:address(6;counta(AP6:BJ6))

ADDRESS returns text, not a range reference, so you'd need to use INDIRECT: =AP6:INDIRECT(address(6;counta(AP6:BJ6))) or perhaps just:...

5 years ago
Page 35 / 57
0