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

Get inspired! Check out the entries from the Power BI DataViz World Championships preliminary rounds and give kudos to your favorites. View the vizzies.

Reply
hkwan001
Regular Visitor

Display visuals when either one of 2 categories is selected

hkwan001_0-1739007143713.png

I want to display the visual when either country or year is selected. How to merge both Country and Year categories together in the same filter? 

 

1 ACCEPTED SOLUTION
Fowmy
Super User
Super User

@hkwan001 

Create the following measure, and only use it as the visual filter.
See my example below

ShowVisual = 
VAR Segment= ISFILTERED(Table02[Segment])
VAR year= ISFILTERED(Table02[Model])

RETURN IF(Segment|| year, 1, 0)

 

Fowmy_0-1739008317403.png

 

Fowmy_1-1739008340429.png

 

 




Did I answer your question? Mark my post as a solution! and hit thumbs up


Subscribe and learn Power BI from these videos

Website LinkedIn PBI User Group

View solution in original post

1 REPLY 1
Fowmy
Super User
Super User

@hkwan001 

Create the following measure, and only use it as the visual filter.
See my example below

ShowVisual = 
VAR Segment= ISFILTERED(Table02[Segment])
VAR year= ISFILTERED(Table02[Model])

RETURN IF(Segment|| year, 1, 0)

 

Fowmy_0-1739008317403.png

 

Fowmy_1-1739008340429.png

 

 




Did I answer your question? Mark my post as a solution! and hit thumbs up


Subscribe and learn Power BI from these videos

Website LinkedIn PBI User Group

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code FABINSIDER for a $400 discount!

FebPBI_Carousel

Power BI Monthly Update - February 2025

Check out the February 2025 Power BI update to learn about new features.

March2025 Carousel

Fabric Community Update - March 2025

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