Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount.
Register nowThe Power BI DataViz World Championships are on! With four chances to enter, you could win a spot in the LIVE Grand Finale in Las Vegas. Show off your skills.
Hello,
How to create a new measure to calculate the difference between 2 columns?
Eg. 967,063 - 226,556
Thanks.
Solved! Go to Solution.
Hi, @pang22
Sample data:
Measure =
Var _N1=CALCULATE(SUM('Table'[Qty]),FILTER(ALLEXCEPT('Table','Table'[Month]),[Type]="OPN"))
Var _N2=CALCULATE(SUM('Table'[Qty]),FILTER(ALLEXCEPT('Table','Table'[Month]),[Type]="Order OH"))
Return
IF(HASONEVALUE('Table'[Type]),SUM('Table'[Qty]),_N1-_N2)
Is this the result you expect? Please see the attached document.
Best Regards,
Community Support Team _Charlotte
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi, @pang22
Sample data:
Measure =
Var _N1=CALCULATE(SUM('Table'[Qty]),FILTER(ALLEXCEPT('Table','Table'[Month]),[Type]="OPN"))
Var _N2=CALCULATE(SUM('Table'[Qty]),FILTER(ALLEXCEPT('Table','Table'[Month]),[Type]="Order OH"))
Return
IF(HASONEVALUE('Table'[Type]),SUM('Table'[Qty]),_N1-_N2)
Is this the result you expect? Please see the attached document.
Best Regards,
Community Support Team _Charlotte
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
measures need aggregations. So instead of saying
measure = [Column1]-[Column2]
you need to say
measure = sum(Table[Column1])-sum(Table[Column2])
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Prices go up Feb. 11th.
If you love stickers, then you will definitely want to check out our Community Sticker Challenge!
User | Count |
---|---|
144 | |
73 | |
63 | |
52 | |
51 |
User | Count |
---|---|
208 | |
91 | |
62 | |
59 | |
56 |