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

Using Measure as a Visual Level Filter

I understand that we cannot use measure value as a visual level filter.

However, I'd like to filter visualization depending on measure value.

Would you know how to implement the function below?

 

cat_1cat_2value
AA2
AA1
AB3
BB4
BC5

 

[function]

・setting "cat_1" & "cat_2" as slicers

・making some visualization of measure of "value"

・if a number of rows with slicer's settings is less than 2, a visualization is hidden.

e.g.)

When we chose "A" in cat_1 and "all" in cat_2, a visualization is not hidden. (a number of rows is 3.)

When we chose "A" in cat_1 and "A" in cat_2, a visualization is not hidden. (a number of rows is 2.)

When we chose "A" in cat_1 and "B" in cat_2, a visualization is hidden. (a number of rows is 1.)

 

*** In my first idea, I set measure counting numbers of rows and set it as visual level filter.

 

 

1 ACCEPTED SOLUTION
v-jayw-msft
Community Support
Community Support

Hi @joade2co ,

 

Create a measure and add it to visual filter as below.

Measure = COUNTROWS(ALLSELECTED('Table'))

 2.PNG3.PNG

 

Best Regards,

Jay

Community Support Team _ Jay
If this post helps, then please consider Accept it as the solution
to help the other members find it.

View solution in original post

2 REPLIES 2
v-jayw-msft
Community Support
Community Support

Hi @joade2co ,

 

Create a measure and add it to visual filter as below.

Measure = COUNTROWS(ALLSELECTED('Table'))

 2.PNG3.PNG

 

Best Regards,

Jay

Community Support Team _ Jay
If this post helps, then please consider Accept it as the solution
to help the other members find it.
amitchandak
Super User
Super User

@joade2co , You will not be able to hide visual. You create a measure and return null.

 

example

Switch( true(),

Max([cat_1]) = "All"  &&  isfiltered([cat_2]) =False() , blank(),

[Measure]

)

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.