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
cristianml
Post Prodigy
Post Prodigy

2 filters dAX

Hi,

 

This formula is not working, not sure where is the mistake. Could you help me ?

 

=CALCULATE(SUM(BR[Value]),
FILTER(BR,BR[BR Report]="Revenue"),FILTER(BR,BR[Type]="MTD Actual"))

 

I need to calculate the column "Value" but filtering by 2 categories from 2 different columns.

Thanks and regards.

2 ACCEPTED SOLUTIONS
v-gizhi-msft
Community Support
Community Support

Hi,

 

Please try this:

=
CALCULATE (
    SUM ( BR[Value] ),
    FILTER ( BR, BR[BR Report] = "Revenue" && BR[Type] = "MTD Actual" )
)

If you still have any issue, please share some sample data and the expected result.

Thanks!

 

Best Regards,

Giotto Zhi

View solution in original post

Hi,

 

Yeah, if you want to filter many categories, you should add all of them into FILTER function by '&&'.

And you can also filter them in Filter Pane.

 

Best Regards,

Giotto

View solution in original post

3 REPLIES 3
v-gizhi-msft
Community Support
Community Support

Hi,

 

Please try this:

=
CALCULATE (
    SUM ( BR[Value] ),
    FILTER ( BR, BR[BR Report] = "Revenue" && BR[Type] = "MTD Actual" )
)

If you still have any issue, please share some sample data and the expected result.

Thanks!

 

Best Regards,

Giotto Zhi

Hi @v-gizhi-msft ,

 

How can I filter more than 2 categories? like 4 catogories ?

 

=CALCULATE(SUM(BR[Value]),FILTER(BR,BR[BR Report]="9. TOTAL RESOURCE COST" && BR[BR Report]="12.2 Net Load / (Load Recoveries)" && BR[Type]="MTD Actual"))

 

I have to use:  &&  everytime I add a filter ?

 

Thanks

Hi,

 

Yeah, if you want to filter many categories, you should add all of them into FILTER function by '&&'.

And you can also filter them in Filter Pane.

 

Best Regards,

Giotto

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.

Top Solution Authors
Top Kudoed Authors