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
ykumar03
Frequent Visitor

How to apply filter on implicit measures in matrix Visual

This is my table.

 

tabletable

and I have created this matrix visual on this

output.PNG

 

 

 

 

 

 

 

 

 

 

 

 

 

Now I want to apply a filter on this visual for records where C is blank and N has some count..Like below. Please help 

final.PNG

@PowerBI 

1 ACCEPTED SOLUTION
AllisonKennedy
Super User
Super User

@ykumar03  Please paste your data in table format in future (can paste from Excel direct to this forum). It makes it much easier for us to help. 

 

One option is to use a measure in the matrix that does the filtering for you: 

 

Filter =
VAR _C = CALCULATE([Status Count], 'Table'[Status] = "C")
VAR _N = CALCULATE([Status Count], 'Table'[Status] = "N")
RETURN
CALCULATE([Status Count], FILTER(VALUES('Table'[empname]), ISBLANK(_C) && _N>0))
 
See attached sample file under my signature. 

Please @mention me in your reply if you want a response.

Copying DAX from this post? Click here for a hack to quickly replace it with your own table names

Has this post solved your problem? Please Accept as Solution so that others can find it quickly and to let the community know your problem has been solved.
If you found this post helpful, please give Kudos C

I work as a Microsoft trainer and consultant, specialising in Power BI and Power Query.
www.excelwithallison.com

View solution in original post

3 REPLIES 3
AllisonKennedy
Super User
Super User

@ykumar03  Please paste your data in table format in future (can paste from Excel direct to this forum). It makes it much easier for us to help. 

 

One option is to use a measure in the matrix that does the filtering for you: 

 

Filter =
VAR _C = CALCULATE([Status Count], 'Table'[Status] = "C")
VAR _N = CALCULATE([Status Count], 'Table'[Status] = "N")
RETURN
CALCULATE([Status Count], FILTER(VALUES('Table'[empname]), ISBLANK(_C) && _N>0))
 
See attached sample file under my signature. 

Please @mention me in your reply if you want a response.

Copying DAX from this post? Click here for a hack to quickly replace it with your own table names

Has this post solved your problem? Please Accept as Solution so that others can find it quickly and to let the community know your problem has been solved.
If you found this post helpful, please give Kudos C

I work as a Microsoft trainer and consultant, specialising in Power BI and Power Query.
www.excelwithallison.com

Thank You so much @AllisonKennedy for your help.

You're very welcome @ykumar03 Glad it worked for you. 🙂 


Please @mention me in your reply if you want a response.

Copying DAX from this post? Click here for a hack to quickly replace it with your own table names

Has this post solved your problem? Please Accept as Solution so that others can find it quickly and to let the community know your problem has been solved.
If you found this post helpful, please give Kudos C

I work as a Microsoft trainer and consultant, specialising in Power BI and Power Query.
www.excelwithallison.com

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.