Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
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" ) ) )
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 9 | |
| 7 | |
| 6 | |
| 4 | |
| 3 |