Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.
Check it out now!Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers. Get Fabric certified for FREE! Learn more
Hi i am trying to change the row order in a table. I created a measure using below formula and added to values but didnt work. Can anyone help?
ANSP (Cents) |
BDF (includes rebates) |
Customer NS |
Customer P&L - Gross Profit |
Gross Sales |
Off Invoice Sales |
Total Cost of Goods - MGT |
Trade Discounts |
Volume Sales |
Solved! Go to Solution.
I will give it a try with adding a column. Is there a way to do this without changing the source data, via measures?
@dokat , Create this as new column and mark it as a sort column of 'P&L'[P&L]
Rearrange Rows = switch(('P&L'[P&L]),"Volume Sales",1,"Gross Sales",2,"Trade Discounts",3,"Off Invoice Sales",4,"BDF(includes rebates)",5,"Customer NS",6,"ANSP(Cents)",7,"Total Cost of Goods-MGT",8,"Customer P&L - Gross Profit",9)
How to Create Sort Column and Solve Related Errors:
https://www.youtube.com/watch?v=KK1zu4MBb-c
In actual table there are more rows that i shared on the sample data. In the query editor raw table there are total of 15 rows. If i just code the 9 it won't work.