Forum Discussion
Nanakwame
Helper II
4 years agoDifference between two amounts (Measures or columns)
Hi All, I am building a dashboard off sales data with sales values, back order amount values, open order amount values etc. I have a trend graph showing back order amount values and open order ...
VahidDM
Super User
4 years agoHi Nanakwame
Try this:
Variance = [Back Order Amount]-[Open Order Amount]
If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
Nanakwame
Helper II
4 years agoThat worked Sir. What if i wanted to create the percent difference of between the two?
- VahidDM4 years ago
Super User
Percent Variance =
Var _Variance =[Back Order Amount]-[Open Order Amount]
return
_Variance/[Back Order Amount] //or _Variance/[Open Order Amount]Change the format to percentage.
If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!