Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by watching the DP-600 session on-demand now through April 28th.
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
Hi,
I´m wondering how to solve my problem with filtering.
Users will within the first step filter specific products and then filter just types without/with low stock to export it.
Is there any possibility how to solve this within PBI?
Many thanks
Solved! Go to Solution.
I think you can archive the desired output with 2 slicers:
1. A slicer for Product
2. A slicer for Stock. You can use the "Between mode" or the "Less than or equal to"
Hi @DigiMarketa ,
I have created a simple sample, please refer to it to see if it helps you.
Create a table includes [product] column, and without relationship between the 2 tables.
Then create a measure.
Measure =
VAR _SELECTED =
SELECTEDVALUE ( 'FILTER'[PRODUCT] )
VAR _MINVALUE =
MINX (
FILTER (
ALL ( 'Table' ),
'Table'[PRODUCT] = SELECTEDVALUE ( 'Table'[PRODUCT] )
),
'Table'[STOCK]
)
RETURN
IF (
MAX ( 'Table'[STOCK] ) = _MINVALUE
&& _SELECTED = SELECTEDVALUE ( 'Table'[PRODUCT] ),
_MINVALUE,
BLANK ()
)
If I have misunderstood your meaning, please provide more details with your desired output.
Best Regards
Community Support Team _ Polly
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi,
thank you both for your solutions. Both is possible way, how to do it.
Regards,
Marketa
Regards
Hi @DigiMarketa ,
I have created a simple sample, please refer to it to see if it helps you.
Create a table includes [product] column, and without relationship between the 2 tables.
Then create a measure.
Measure =
VAR _SELECTED =
SELECTEDVALUE ( 'FILTER'[PRODUCT] )
VAR _MINVALUE =
MINX (
FILTER (
ALL ( 'Table' ),
'Table'[PRODUCT] = SELECTEDVALUE ( 'Table'[PRODUCT] )
),
'Table'[STOCK]
)
RETURN
IF (
MAX ( 'Table'[STOCK] ) = _MINVALUE
&& _SELECTED = SELECTEDVALUE ( 'Table'[PRODUCT] ),
_MINVALUE,
BLANK ()
)
If I have misunderstood your meaning, please provide more details with your desired output.
Best Regards
Community Support Team _ Polly
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
I think you can archive the desired output with 2 slicers:
1. A slicer for Product
2. A slicer for Stock. You can use the "Between mode" or the "Less than or equal to"
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 |
|---|---|
| 42 | |
| 37 | |
| 34 | |
| 21 | |
| 16 |
| User | Count |
|---|---|
| 65 | |
| 62 | |
| 31 | |
| 26 | |
| 25 |