Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowData Days is here! Join us now for 60+ days of learning, challenges, and connection. Learn more
Hi,
I have taken this table from Excel & cannot use 'transpose' as this is the layout required - How do I edit this query so that the '%' rows are in percentage format & the Jul-21 list is in this order:
Revenue, Gross Profit, GP%, Overheads, Operating Profit, OP%, EBITDA, EBITDA %, EBITDA adj, EBITDA adj %?
Thanks
Solved! Go to Solution.
Here's a solution:
Here's the end result. It works, but all the values are of the text data type. But maybe that doesn't matter here because we wouldn't want to sum decimal numbers with percentages anyway.
I hope this helps. If it does, please mark it as the solution.
@Anonymous
1. To sort the column, you can add an index then sort using conditional column as @Anonymous suggested.
2. In order to change some value to %, you need to create a measure for each column, just replace the referred column to the corresponding column name. For example:
Anual month measure = IF(RIGHT(MAX([Type]),1)="%",FORMAT(MAX([Anual Month]),"Percent"),MAX([Anual Month]))
Anual Year measure = IF(RIGHT(MAX([Type]),1)="%",FORMAT(MAX([Anual Year]),"Percent"),MAX([Anual Year]))
Paul Zheng _ Community Support Team
If this post helps, please Accept it as the solution to help the other members find it more quickly.
@Anonymous @Anonymous Thats perfect, thank you very much for your help!
@Anonymous I don't suppose you know what to add to the measure so that the percentage rows show to the nearest percent (0 d.p.)? Formatting to 0 d.p. in 'Measure tools' only applies to the non-percentage values. Thanks
@Anonymous
1. To sort the column, you can add an index then sort using conditional column as @Anonymous suggested.
2. In order to change some value to %, you need to create a measure for each column, just replace the referred column to the corresponding column name. For example:
Anual month measure = IF(RIGHT(MAX([Type]),1)="%",FORMAT(MAX([Anual Month]),"Percent"),MAX([Anual Month]))
Anual Year measure = IF(RIGHT(MAX([Type]),1)="%",FORMAT(MAX([Anual Year]),"Percent"),MAX([Anual Year]))
Paul Zheng _ Community Support Team
If this post helps, please Accept it as the solution to help the other members find it more quickly.
@Anonymous I like this. It preserves the data type and only relies on a % suffix. 👍
Here's a solution:
Here's the end result. It works, but all the values are of the text data type. But maybe that doesn't matter here because we wouldn't want to sum decimal numbers with percentages anyway.
I hope this helps. If it does, please mark it as the solution.
Don't miss out on Data Days, June 15 through August 7. Learn Fabric, Power BI, SQL, AI and more.
Check out the May 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 4 | |
| 4 | |
| 3 | |
| 2 | |
| 1 |
| User | Count |
|---|---|
| 11 | |
| 11 | |
| 4 | |
| 4 | |
| 4 |