Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
RBear
Advocate I
Advocate I

How to combine the output of a filtered measure with the rest of the data?

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?

1 ACCEPTED SOLUTION
zoloturu
Memorable Member
Memorable Member

@RBear,

 

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

https://exceltown.com/en/tutorials/power-bi/powerbi-com-and-power-bi-desktop/dax-query-language-for-...

 

Regards,
Ruslan
-------------------------------------------------------------------
Did I answer your question? Mark my post as a solution!

View solution in original post

3 REPLIES 3
zoloturu
Memorable Member
Memorable Member

@RBear,

 

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

https://exceltown.com/en/tutorials/power-bi/powerbi-com-and-power-bi-desktop/dax-query-language-for-...

 

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

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.