March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Hi,
I am trying to capture the values selected in a slicer so I can display a notification on screen such as "You have selected the following: A, B, C).
For displaying if a single value is selcted, I am using the following:
HasOneValue =
"You have selected the following Territory filter: "
& IF (
HASONEVALUE ( Rev[Territory] ),
ALLSELECTED ( Rev[Territory] ),
" More than one territory")
)
However, for the second part of the if statement, I would like to show the actual unique values selected in the slicer concatenated together (e.g. "You have selected the following Territory filter: Territory 1, Territory 2"). I tried using concatenatex, and this works...too well! It passes in every value from every row that matches my filter context. I next tried wrapping the column I want to return with DISTINCT, as follows:
HasOneValue =
"You have selected the following Territory filter: "
& IF (
HASONEVALUE ( Rev[Territory] ),
ALLSELECTED ( Rev[Territory] ),
CONCATENATEX ( rev, DISTINCT ( Rev[Territory] ), "," )
)
However, this returns an error inside the visual, although the DAX code itself does not show an error when run.
Any thoughts as to how to fix this?
Thanks,
Scott
Solved! Go to Solution.
Solved it. Just in case anyone wants to see the solution:
TerritoriesSelected = "You have selected the following territories: " & CONCATENATEX(VALUES(Rev[Territory]),Rev[Territory],", ")
Best,
Scott
Solved it. Just in case anyone wants to see the solution:
TerritoriesSelected = "You have selected the following territories: " & CONCATENATEX(VALUES(Rev[Territory]),Rev[Territory],", ")
Best,
Scott
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
133 | |
90 | |
88 | |
64 | |
58 |
User | Count |
---|---|
203 | |
141 | |
107 | |
73 | |
70 |