Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Column1 Index Category ID
4908 1 A 123
4912 2 B 456
4915 3 C 789
4918 4 D 134
4922 5 E 178
4925 6 B 398
4928 7 F 549
4932 8 A 753
4935 9 D 497
4938 10 C 374
There is a slicer for Column1. If a value is selected in the slicer, then the values from one before the selected up to the end should be retrieved.
For example, if I select 4928, then I should get the values
4925 B 398
4928 F 549
4932 A 753
4935 D 497
4938 C 374
Solved! Go to Solution.
Hi @deechappi ,
Please create an unreleated DimColumn1 table for slicer. Then create a measure to have a test.
Filter =
VAR _SELECTVALUE =
SELECTEDVALUE ( 'Filter'[Column1] )
VAR _VALUEBEFORE =
CALCULATE (
MAX ( 'Table'[Column1] ),
FILTER ( ALL ( 'Table' ), 'Table'[Column1] < _SELECTVALUE )
)
RETURN
IF ( MAX ( 'Table'[Column1] ) >= _VALUEBEFORE, 1, 0 )
Add this filter into table visual and set it to show items when value = 1.
Result is as below.
Best Regards,
Rico Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @deechappi ,
Please create an unreleated DimColumn1 table for slicer. Then create a measure to have a test.
Filter =
VAR _SELECTVALUE =
SELECTEDVALUE ( 'Filter'[Column1] )
VAR _VALUEBEFORE =
CALCULATE (
MAX ( 'Table'[Column1] ),
FILTER ( ALL ( 'Table' ), 'Table'[Column1] < _SELECTVALUE )
)
RETURN
IF ( MAX ( 'Table'[Column1] ) >= _VALUEBEFORE, 1, 0 )
Add this filter into table visual and set it to show items when value = 1.
Result is as below.
Best Regards,
Rico Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Something that I can think of is to change the Column1 type to numerical and use it as an slicer and set it up as a "greater than or equal to" type of slicer.
Proud to be a Super User!
Thank You @ray_aramburo . But, I would also like the one before the selected value as well
You can adjust then to a "Between" type of slicer.
Proud to be a Super User!
The requirement is to use the "vertical list" slicer
You'd probably need to leverage some complex DAX, for simplicity I would push back and propose the between slicer. On the meantime, I'll see if I can think of a solution with DAX that fits your need.
Proud to be a Super User!
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.