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
My Table1 looks like this:
Name Units
Ay 100
Bee 200
Cee 300
I have this measure, used to multiply Bee's units by 3:
Measure = calculate(sum(Table1[Units]) * 3, FILTER ('Table1', 'Table1'[Name] = "Bee"))
When displayed in the report, it looks like this:
Name Measure
Ay
Bee 600
Cee
But I would like to be able to display the Measure outcome for Bee, together with the Unit numbers for the others, in one column, like so:
Name Adusted
Ay 100
Bee 600
Cee 300
What's the simplest way to do that?
Solved! Go to Solution.
You can use SUMX function:
Measure = SUMX(Table1, IF( [Name]="Bee", [Units] * 3, [Units] ) )
SUMX function references:
https://msdn.microsoft.com/en-us/query-bi/dax/sumx-function-dax
Regards,
Ruslan
-------------------------------------------------------------------
Did I answer your question? Mark my post as a solution!
You can use SUMX function:
Measure = SUMX(Table1, IF( [Name]="Bee", [Units] * 3, [Units] ) )
SUMX function references:
https://msdn.microsoft.com/en-us/query-bi/dax/sumx-function-dax
Regards,
Ruslan
-------------------------------------------------------------------
Did I answer your question? Mark my post as a solution!
As simple as an IF statement?
Works and thanks!
Yes.
You are welcome.
Regards,
Ruslan
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 | |
83 | |
71 | |
49 |
User | Count |
---|---|
143 | |
120 | |
110 | |
59 | |
57 |