Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hello
Is it possible to structure an array of all values excluding specific values?
I.e. I want to do Table.SelectColumns(#Table,not {"col1","col2"})
i.e. to select all columns of the model apart from specific columns.
Thanks!
Solved! Go to Solution.
I think you could combine Table.ColumnNames and List.RemoveItems
Something like
Table.SelectColumns(#Table, List.RemoveItems(Table.ColumnNames(#Table), {"Col1", "Col2}))
I think you could combine Table.ColumnNames and List.RemoveItems
Something like
Table.SelectColumns(#Table, List.RemoveItems(Table.ColumnNames(#Table), {"Col1", "Col2}))