Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hi,
I have created following measure in my report to display percentage for one of the field.
PercentageRevenue = ([NetTotalRevenue] * 100 )/ RevenueData[TotalRevenue]
This gives me an expected and correct result. The only question is the values are showing as "20.89" or "14.67". Instead, I want to display these figures with percentage sign. For example, 20.89%, or 14.67%, etc.
How can I set the data labels to display values with Percentage sign?
Just to let you know that, I tried by applying % in the format using "%" button in the expression editor. However, the figures are then becoming incorrect, as each of the labels are then shown as multiplied by 100. For example, 2089.00 or 1467.20 etc.
Any idea of solving this issue?
Solved! Go to Solution.
Just delete multiply by 100 the net revenue..and then change the format to % 0,289 = 28,9%
Just delete multiply by 100 the net revenue..and then change the format to % 0,289 = 28,9%
I can't find the option to change the format to % - how do I do this?
Populate a new column with a expression like this "totalsalesamount = count(salesamount)" then created another column for the percentage with expression like this "sales in percent = DIVIDE(salesamount,totalsalesamount)" then change the format.