Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. 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
Check out the July 2025 Power BI update to learn about new features.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
User | Count |
---|---|
61 | |
61 | |
55 | |
38 | |
27 |
User | Count |
---|---|
85 | |
60 | |
45 | |
41 | |
39 |