Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
5 years ago
Solved

PowerBI % difference measure

Hi,    I would like to ask what is the equivalent of getting a % difference of two numbers in PowerBI measure?    I am used to this on excel and would like to replicate it in PowerBI please.   ...
  • Ashish_Mathur's avatar
    Ashish_Mathur
    5 years ago

    Hi,

    Assuming Total and Outbound call are both measures in PBI Desktop, try this measure

    Diff (%) = divide(([Outbound calls]-[Total]),[total])

    Format this measure as %.

    Hope this helps.