Forum Discussion
replacing column values based on slicer slection
- Anonymous6 years ago
Hi chotu27
I build a table like yours to have test.
We need to build a new Slicer table by Category column.
Slicer = VALUES('Table'[Category])Then build a slicer.
Build a measure to achieve your goal.
Output = VAR _selectvalue = SELECTEDVALUE ( 'Slicer'[Category] ) RETURN IF ( MAX ( 'Table'[Category] ) = _selectvalue, MAX ( 'Table'[Category] ), CALCULATE ( MAX ( 'Table'[Datamasking] ), FILTER ( ALL ( 'Table' ), 'Table'[Category] = MAX ( 'Table'[Category] ) ) ) )Result:
Default:
Select Laon Care:
You can download the pbix file from this link: Replacing column values based on slicer slection
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 chotu27
I build a table like yours to have test.
We need to build a new Slicer table by Category column.
Slicer = VALUES('Table'[Category])
Then build a slicer.
Build a measure to achieve your goal.
Output =
VAR _selectvalue =
SELECTEDVALUE ( 'Slicer'[Category] )
RETURN
IF (
MAX ( 'Table'[Category] ) = _selectvalue,
MAX ( 'Table'[Category] ),
CALCULATE (
MAX ( 'Table'[Datamasking] ),
FILTER ( ALL ( 'Table' ), 'Table'[Category] = MAX ( 'Table'[Category] ) )
)
)
Result:
Default:
Select Laon Care:
You can download the pbix file from this link: Replacing column values based on slicer slection
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.
Anonymous Thank you for your help i have a small questions
Q1 : If i remove Datamasking column from table it is not showing me the same results.
Q2: What if the user selects multiple values from slicer ? is there any possibilty to display multiple values selected in output?