Starting December 3, join live sessions with database experts and the Microsoft product team to learn just how easy it is to get started
Learn moreGet certified in Microsoft Fabric—for free! For a limited time, get a free DP-600 exam voucher to use by the end of 2024. Register now
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 amount by month.
I am looking for a dax function to calculate the difference between the 2 measures (back order amount and open order amount). Please note that the x axis is a drill down so it can be drilled down by quater, week etc. I will prefer for this dax function to take the drill down values into consideration.
Please see image of graph below
Solved! Go to Solution.
Hi @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!!
Hi @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!!
That worked Sir. What if i wanted to create the percent difference of between the two?
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!!
Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.
User | Count |
---|---|
94 | |
92 | |
82 | |
71 | |
49 |
User | Count |
---|---|
143 | |
121 | |
112 | |
58 | |
57 |