Forum Discussion
JimSales81
2 years agoHelper I
Custom Column Selection with Multiple Criteria
Hello, I have a file i pull from that updates when a new period is finished. instead of having to manually update my power Query to pull in the new column. I want it to be dynamic. So i wan...
- 2 years ago
Simply add the List of fixed names to your Selection:
= List.Select(Table.ColumnNames(#"Promoted Headers"), each Text.StartsWith(_,"20")) & {"Territory","Customer","etc"} in
ronrsnfld
2 years agoSuper User
Simply add the List of fixed names to your Selection:
= List.Select(Table.ColumnNames(#"Promoted Headers"), each Text.StartsWith(_,"20")) & {"Territory","Customer","etc"}
in