Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Power BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.

Reply
JNelson
Helper II
Helper II

Percentage calculated column

Hello!

 

I need some help with a Profit % calculated column. I think it is a very simple answer that I can't seem to see.

 

T_Profit = Table1[T_Revenue]-Table1[T_Cost]

T_Profit% = DIVIDE(Table1[T_Profit],Table1[T_Cost],0)

These two columns calculate fine on a row level, however, the Totals do not work, therefore when I try to put a Card visual for the overall T_Profit% is does not work. I don't know how to get the % of the total without it summing or averaging...

 

Example below

Percentage.JPG

When I pull it into a card I am forced to find a calculation eg. It's either Sum (37.20%) or Average (9.30%) when it should be 12.40% still.... 

Card.JPG

I think perhaps my DAX or my maths is incorrect. Can someone please provide me with a more effective DAX. Should I use a measure instead?

 

Thanks!

 

1 ACCEPTED SOLUTION
johnt75
Super User
Super User

Yes, you should use measures instead. When you add a column to a visual like that Power BI will automatically create implicit measures anyway, better to do it yourself. You can also use the measures you define as building blocks for further measures, e.g.

Revenue = SUM(Table1[T_Revenue])

Cost = SUM(Table1[Cost])

Profit = [Revenue] - [Cost]

Profit % = DIVIDE( [Profit], [Cost], 0)

View solution in original post

1 REPLY 1
johnt75
Super User
Super User

Yes, you should use measures instead. When you add a column to a visual like that Power BI will automatically create implicit measures anyway, better to do it yourself. You can also use the measures you define as building blocks for further measures, e.g.

Revenue = SUM(Table1[T_Revenue])

Cost = SUM(Table1[Cost])

Profit = [Revenue] - [Cost]

Profit % = DIVIDE( [Profit], [Cost], 0)

Helpful resources

Announcements
June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

Check out the June 2025 Power BI update to learn about new features.

June 2025 community update carousel

Fabric Community Update - June 2025

Find out what's new and trending in the Fabric community.