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

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.

Reply
ChrisByrdal
New Member

Filterpane: show only related values

Is it possible to only get related values in a filter on the filter pane - when another dimension has been limited?
I har a sales fact table with two dimensions - country and product - when I limit the country I would like the product to be limited to possible values for that specific country.

I would like to use standard filter panes, not slicers.
My data comes from a cube.
I have a rather complex model (not the one described above - that was just for clarification) - therefor I prefer not to use both direction in the relationships to my fact table.

2 REPLIES 2
ChrisByrdal
New Member

Hi @Anonymous 

It's not in the measure I have a problem 🙂

It's in the filter pane - I have a lot of data and would like one dimension to only show valid values when there has been a selection on the other dimension.
For now I have solved my issue by changing the connection from single to both - but I'm not sure it's a good idea considering performance.

Best regards Chris

Anonymous
Not applicable

Hi @ChrisByrdal 

You can consider to use all() function to remove all filters in a measure

e.g 

Measure =
CALCULATE ( SUM ( Table[Value] ), FILTER ( ALL ( Table ), [Country] = "xxx" ) )

You can refer to the following link about the function.

ALL function (DAX) - DAX | Microsoft Learn

 

Best Regards!

Yolo Zhu

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

Helpful resources

Announcements
September Power BI Update Carousel

Power BI Monthly Update - September 2025

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

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