Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
Hi everyone,
My data is filtered by a Scenarios table
Scenario
1
2
3
4
I need to use a single select filter that when a user filters by 1, I need to filter by 1. When the user filters by 2, it needs to select 1 and 2, when the user selects 3, 1,2 and 3, and so on
Is there an easy way to do this?
I know multi select is available but users find that difficult and forget to do it
Solved! Go to Solution.
Hi, @Anonymous
According to your description, I can clearly understand your requirement, I think you can achieve this using measure and visual filter, you can follow my steps:
Slicer = 'Scenario'
And don’t create a relationship between the two tables:
Flag =
var _selectedvalue=SELECTEDVALUE(Slicer[Scenario])
return
IF(MAX([Scenario])<=_selectedvalue,1,0)
And you can get what you want.
You can download my test pbix file below
Thank you very much!
Best Regards,
Community Support Team _Robert Qin
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi, @Anonymous
According to your description, I can clearly understand your requirement, I think you can achieve this using measure and visual filter, you can follow my steps:
Slicer = 'Scenario'
And don’t create a relationship between the two tables:
Flag =
var _selectedvalue=SELECTEDVALUE(Slicer[Scenario])
return
IF(MAX([Scenario])<=_selectedvalue,1,0)
And you can get what you want.
You can download my test pbix file below
Thank you very much!
Best Regards,
Community Support Team _Robert Qin
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
99 | |
69 | |
46 | |
39 | |
33 |
User | Count |
---|---|
163 | |
110 | |
61 | |
51 | |
40 |