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

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

Reply
Anonymous
Not applicable

DAX FILTER

Hi There,

I wrote a DAX with filters as shown below. But I observed that those Deal statuses I haven't included in my DAX are pulling into the table like Business Office & Delivery Scheduled.

Ehix_0-1655912230614.png

 

1 ACCEPTED SOLUTION
v-henryk-mstf
Community Support
Community Support

Hi @Anonymous ,

 

Try the formula like below:

vhenrykmstf_0-1656402411492.png

Amount_filter =
CALCULATE (
    SUM ( FactInternetSales[SalesAmount] ),
    DimProduct[Color] IN { "Black", "Blue" }
)

vhenrykmstf_1-1656402458022.png

If the problem is still not resolved, please provide detailed error information and let me know immediately. Looking forward to your reply.


Best Regards,
Henry


If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

2 REPLIES 2
v-henryk-mstf
Community Support
Community Support

Hi @Anonymous ,

 

Try the formula like below:

vhenrykmstf_0-1656402411492.png

Amount_filter =
CALCULATE (
    SUM ( FactInternetSales[SalesAmount] ),
    DimProduct[Color] IN { "Black", "Blue" }
)

vhenrykmstf_1-1656402458022.png

If the problem is still not resolved, please provide detailed error information and let me know immediately. Looking forward to your reply.


Best Regards,
Henry


If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Anonymous
Not applicable

Try to write

 

DealStatus = Filter(... IN {...})

 

 

Helpful resources

Announcements
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

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