Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by attending the DP-600 session on April 23rd (pacific time), live or on-demand.
Learn moreJoin the FabCon + SQLCon recap series. Up next: Power BI, Real-Time Intelligence, IQ and AI, and Data Factory take center stage. All sessions are available on-demand after the live show. Register now
Hello,
I want to create a single filter that uses multiple dimensions to filter my data (master filter).
What is the best syntax for this?
e.g. Stage: Won and Pending && Specific Products && Date = Today().
Thank you!
Solved! Go to Solution.
Hi @ChPetru ,
You can create a measure as below and apply a visual-level filter on your visual with the condition(Measure is 1).
Measure =
IF (
MAX ( 'DimesionTable1'[Won and Pending] ) = TODAY ()
&& MAX ( 'DimesionTable2'[Specific Products] ) = TODAY ()
&& MAX ( 'DimesionTable3'[Date] ) = TODAY (),
1,
0
)
Best Regards
Hi @ChPetru ,
You can create a measure as below and apply a visual-level filter on your visual with the condition(Measure is 1).
Measure =
IF (
MAX ( 'DimesionTable1'[Won and Pending] ) = TODAY ()
&& MAX ( 'DimesionTable2'[Specific Products] ) = TODAY ()
&& MAX ( 'DimesionTable3'[Date] ) = TODAY (),
1,
0
)
Best Regards
Thank you!
Check out the April 2026 Power BI update to learn about new features.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
| User | Count |
|---|---|
| 6 | |
| 6 | |
| 3 | |
| 2 | |
| 2 |
| User | Count |
|---|---|
| 22 | |
| 10 | |
| 10 | |
| 7 | |
| 5 |