Forum

Catalin Bombea
@catalinb
Admin
Member
Joined: Nov 8, 2013
Last seen: Jul 3, 2025
Topics: 1 / Replies: 1936
Reply
RE: Get data from folder does not show files

What do you actually see? "folder path of Power Query" does not mean anything to me. Can you upload a screenshot to see what you mean?

4 years ago
Forum
Reply
RE: Extracting from wb1 to wb2, modify wb2, and merge back into wb1.

Hi, Hard to see the reasons for this process, if it's shared, better to not lock it for editing, and there is no more need to edit in another file,...

4 years ago
Reply
RE: Mynda's solution in 2012

Hi Cedric, The x from (x)=> try List.Last(List.RemoveNulls(List.FirstN(Record.ToList(x) ,Pos+1))) otherwise null represents the current row o...

4 years ago
Forum
Reply
RE: Mynda's solution in 2012

Should be easier in PQ. There are also other ways to get that result with formulas: =LOOKUP(2, 1/OFFSET(Sheet1!B1,MATCH(A4,part_number,0),0,1,MATCH(B3...

4 years ago
Forum
Reply
RE: VBA code to Recognize Subtotal Grouping Range

Hi Greg, ActiveCell.DisplayFormat.Interior.Color will give you the formatting color. If this color matches the color you're looking for, you can do...

4 years ago
Forum
Reply
RE: Add rows in a table depending on a number already given

Hi Anne, Add a new column with the formula: =Text.Repeat("z",[Ports]) then split this new column into rows by number of chars (1).

4 years ago
Forum
Reply
RE: Multiselect Dropdown list, multiple ranges

Hi Karen, Use : If Not Intersect(Target, Me.Range("D:F")) Is Nothing Then instead of: If Not Intersect(Target, ThisWorkbook.Worksheets("Keywords...

4 years ago
Forum
Reply
RE: SCRIPT TO COPY MULTIPLE TEXT FILES ROWS AND PASTE OUTPUT IN COLUMNS ON EXCEL FOR EACH FILE

All you have to do is to replace in the query: = Table.ExpandTableColumn(#"Removed Columns", "Custom", {"Column1", "Column2", "Column3", "Column4"}, {...

4 years ago
Forum
Reply
RE: Getting difference between 2 lists

Why? Short answer: because you do not read the documentation: It clearly says: Returns the items in list list1 that do not appear in list list2...

4 years ago
Forum
Reply
RE: SCRIPT TO COPY MULTIPLE TEXT FILES ROWS AND PASTE OUTPUT IN COLUMNS ON EXCEL FOR EACH FILE

Hi Themba, It's easier with Power Query, see file attached: just put all text files in a folder, change the path to that folder in the excel output...

4 years ago
Forum
Reply
RE: Allocation of transactions through Power Query

Hi Sumesh, Which is the order of the invoices? There is no invoice date field to detect FIFO order, which is supposed to be by date. Your invoice n...

4 years ago
Forum
Reply
RE: Automating repeating steps with Power Query function

The second argument of List.Select starts an evaluation of the list, from the beginning of the list down to the last item in the list. The _ is sho...

4 years ago
Forum
Reply
RE: Automating repeating steps with Power Query function

List.Select will analyze each item from the list. "_" is the current item from the list.

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

Try replacing: ShColor = Wks.Tab.ThemeColor & Wks.Tab.TintAndShade with: ShColor = Wks.Tab.Color

4 years ago
Forum
Reply
RE: Automating repeating steps with Power Query function

Oh boy, Step2 = Table.AddColumn(List.Contains(Table.ColumnNames(Source), "Cat"), "NewOne"), is a mess. List.Contains(Table.ColumnNames(Source...

4 years ago
Forum
Page 43 / 130