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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
netanel
Post Prodigy
Post Prodigy

Different filters on the same visual

Hey All!

 

I have a table where each column should be filtered differently
For example
column A will get the following filter: working, Forecast, 5 sites
column B will get the following filter: Ready, Forecast, 10 sites

Which DAX can I use?
Is there another better option than DAX?

I would appreciate your assistance!

 

 

 








Did I answer your question?
Mark my post as a solution!
Appreciate your Kudos!

Connect on Linkedin
linkedin.com/in/netanel-shriki
4 REPLIES 4
Fowmy
Super User
Super User

@netanel 

Since you are trying filter on the same table but different columns, the records that get satisfied by filter will be returned. Please check the example below:

CALCULATETABLE (
    'Product',
    'Product'[Color] IN {"Blue","Purple"},
    'Product'[Brand] IN {"Contoso","Fabricam"}
)



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

Hey @Fowmy 

 

Calculatetable is Good butt Product is DIM 1
I have more Diminsion

Is it possible to make another DIM on the same Measure?








Did I answer your question?
Mark my post as a solution!
Appreciate your Kudos!

Connect on Linkedin
linkedin.com/in/netanel-shriki

@netanel 

Sorry, could you expalin with some data along with the expected results to better understand your question ?


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

@Fowmy 


Yes, sorry it really is not understood enough
Attach a picture that will explain more
In the picture I have a table of PNL
The table has two columns
In each column I have different filters from a different DIM
So if product is DIM 1 then I have more filters from DIM 2 and DIM 3
Link to file: https://1drv.ms/f/s!AonyYI-TdspHgltwngZ6OKvpnSsc


PNL.png








Did I answer your question?
Mark my post as a solution!
Appreciate your Kudos!

Connect on Linkedin
linkedin.com/in/netanel-shriki

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

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

Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors