Forum Discussion

JNelson's avatar
JNelson
Icon for Helper II rankHelper II
4 years ago
Solved

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[...
  • johnt75's avatar
    4 years ago

    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)