Forum Discussion
Anonymous
5 years agoNot applicable
Dynamic text column selection based on slicer selection in Power BI
Hi, I am trying to create a dynamic column, where different text column would be selected, based on single value selected in slicer. Example, when slicer Function = 'HR' then 'HR Score' column, ...
- 5 years ago
Hi, Anonymous
According to your description, I think you can try to create a new table for the slicer and create a measure to achieve this, you can try this:
- Click “Enter data” to create a new table:
- Create a measure:
Dynamic column = var _selectedfunction=SELECTEDVALUE(Slicer[Function]) return SWITCH( _selectedfunction, "HR",MAX('Table'[HR Score]), "Other",MAX('Table'[Other Score]), BLANK())- Create a table chart and a slicer and place them like this:
And you can get what you want.
You can download my test pbix file below
Thank you very much!
If this result is not what you want, you can post some sample data(without sensitive data) and your expected result.
How to Get Your Question Answered Quickly
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.
selimovd
5 years agoMost Valuable Professional
Hey Anonymous ,
try the following measure and adapt it to your tables:
MyDynamicMeasure =
VAR vSelected = SELECTEDVALUE( Slicer[Function] )
VAR vResult =
SWITCH(
vSelected,
"HR", SUM( myTable[HR Score] ),
SUM( myTable[Other Score] )
)
RETURN
vResult
If you need any help please let me know.
If I answered your question I would be happy if you could mark my post as a solution ✔️ and give it a thumbs up 👍
Best regards
Denis
Blog: WhatTheFact.bi
Follow me: twitter.com/DenSelimovic