Forum Discussion
Mercovito
2 years agoFrequent Visitor
Show Filter Context value
Hello All Is it possible to get "filter context" value? For example, when I click on a slice with the value "USA" of a Pie Chart, the visuals will be filtered according to "Active". Here our Filt...
- 2 years ago
Hi,
you can use something like this
SelectedValue = SELECTEDVALUE('Table'[Column1], "More then one Product selected")
or
AllSelected = CONCATENATEX(ALLSELECTED('Table'[Column1]), 'Table'[Column1], ", ")
If this post is useful to help you to solve your issue consider giving the post a thumbs up
and accepting it as a solution !
serpiva64
2 years agoSolution Sage
Hi,
you can use something like this
SelectedValue = SELECTEDVALUE('Table'[Column1], "More then one Product selected")
or
AllSelected = CONCATENATEX(ALLSELECTED('Table'[Column1]), 'Table'[Column1], ", ")
If this post is useful to help you to solve your issue consider giving the post a thumbs up
and accepting it as a solution !