Forum Discussion
Selected Value not displaing
Hi richard_wylde ,
As I know, slicer couldn't affect calculated column, it will work on measure. So you need to use measure to achieve this goal.
Measure = if( convert('Query1'[also working],STRING) = "Marriage", min('Query1'[Mar_desc]), convert('Query1'[also working],STRING) )
By the way, I am not clear your expected output, so if possible could you please inform me more detailed information(such as your expected output and your sample data )? Then I will help you more correctly.
Please do mask sensitive data before uploading.
Thanks for your understanding and support.
Best Regards,
Zoe Zhi
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi dax Greg_Deckler
thanks for your replies, sorry I wasn't able to explain it clearly - are you able to download this example?
- dax6 years ago
Community Support
Hi richard_wylde ,
As I mentioned above, calculated column value can't be affect by slicer(even you refer to measure), so the isfilter() in measure(also working) can't work in calculated column(Grrr - why is this not working though?). I suggest you use measure to achieve this goal.
By the way, I want to know when 'Query1'[also working] = "Marriage", what result did you want to get in table?
Best Regards,
Zoe ZhiIf this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
- richard_wylde6 years ago
Helper IV
Hi dax
Thanks for explaining, it's most annoying that a calculated measure can read a slicer value but a calculated column cannot. I need to be able to identify a column chosen by the user, in order to pass the column into other mesures. (I've updated the example ) - do you know if there is another way to do this ?
Thank you