The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
Hi guys, I have a list like the picture below.
If I use List.Sort, the result is like below
Is there any way to correctly sort this list into {Column1, Column2, ..., Column10, Column11} without turning it into Table and sort based on another column?
Solved! Go to Solution.
Hi @mpi_gov_vn,
You can provide a function as the 2nd argument of List.Sort, that transforms each value into the value to sort by.
In your case this should work:
List.Sort( YourList, each Number.From( Text.AfterDelimiter( _, "Column" ) ) )
Hi @mpi_gov_vn,
You can provide a function as the 2nd argument of List.Sort, that transforms each value into the value to sort by.
In your case this should work:
List.Sort( YourList, each Number.From( Text.AfterDelimiter( _, "Column" ) ) )