Forum Discussion
Trabka
4 years agoFrequent Visitor
Search column name headers by name (like)
Hi there, I am searching advice how can I find column name by the header where I know the header partially. For example: I have one column header called "Calculation XXX Jan", and on some poi...
- 4 years ago
Use this to find last column names starting with "Calculation XXX"
= List.Last(List.Select(Table.ColumnNames(Source),(x)=>Text.StartsWith(x,"Calculation XXX")))
Vijay_A_Verma
4 years agoMost Valuable Professional
Use this to find last column names starting with "Calculation XXX"
= List.Last(List.Select(Table.ColumnNames(Source),(x)=>Text.StartsWith(x,"Calculation XXX")))