Forum

Catalin Bombea
@catalinb
Admin
Member
Joined: Nov 8, 2013
Last seen: Jul 3, 2025
Topics: 1 / Replies: 1936
Reply
RE: How to add merge and check if column was not deleted

Yes, it's all there. Remember you asked about KeyList, that argument takes the list of keys used in the merge, you said there can be different number ...

4 years ago
Forum
Reply
RE: How to remove columns from list

See post 8 above, I already gave you the answer: TableName="Table1" Source= Excel.CurrentWorkbook(){[Name=TableName]}[Content] --> this returns ...

4 years ago
Forum
Reply
RE: How to add merge and check if column was not deleted

Please stop creating new topics on the same problem. The answer to this question was already posted here: All your other new topics you created are ...

4 years ago
Forum
Reply
RE: How to remove columns from list

You are chasing your own tail and I have no idea what you're trying to do. Which is the table you are trying to remove columns from? #"Grouped Rows...

4 years ago
Forum
Reply
RE: VBA excel - copy the same colour tab to new files

I would like to have the same tab color sheets gethered in one file. Then what's wrong in the initial code that I sent you? That is EXACTLY what ...

4 years ago
Forum
Reply
RE: Create Hyperlinked list of Files and Folders

Or, you try a stronger version, that also handles file permission errors, does not add hyperlinks at all (a double click on the cell you want will ope...

4 years ago
Forum
Reply
RE: Create Hyperlinked list of Files and Folders

You have reached a limit in excel, but not the Integer limit as I initially thought, it's the maximum hyperlinks limit you have reached: 65530 hyperli...

4 years ago
Forum
Reply
RE: VBA excel - copy the same colour tab to new files

Option Explicit Sub CopySheetsByColor() Dim Wks As Worksheet, NewWb as Workbook For Each Wks In ThisWorkbook.Worksheets If not Wks.Tab.Color=...

4 years ago
Forum
Reply
RE: How to remove columns from list

= Table.AddColumn(#"Grouped Rows", "List", each Table.Column([ColumnsToKeep],"ColumnName")) Where is the text in red coming from? The table from...

4 years ago
Forum
Reply
RE: How to remove columns from list

As mentioned in your previous topics, a table column is a list. You have to refer to a single column from a table to get a list of items in that co...

4 years ago
Forum
Reply
RE: How to remove columns from list

TableName="Table1" returns a text. Source= Excel.CurrentWorkbook(){[Name=TableName]}[Content] returns a table where the table name is provided by t...

4 years ago
Forum
Reply
RE: How to remove columns from list

= Table.SelectColumns(TableName, ColumnsToKeep) TableName is not a table, it's the NAME of a table. The function needs a table, not a name.

4 years ago
Forum
Reply
RE: Output in separate worksheets each of the reconciled item placing the two ranges side by side

If you move the credit field into Filters section of the pivot, You can use the option Show Filter Pages, this will create a sheet for each credit amo...

4 years ago
Forum
Reply
RE: Output in separate worksheets each of the reconciled item placing the two ranges side by side

Hi Lakhani, You can visualize data in a single place, using a pivot table, as in the example attached, better than lots of sheets. The solution ...

4 years ago
Forum
Reply
RE: VBA excel - copy the same colour tab to new files

Hi Vee Dee, Try this code: Option Explicit Sub CopySheetsByColor() Dim SheetColors As Object, Wks As Worksheet, Arr() As Variant, Counter A...

4 years ago
Forum
Page 44 / 130