Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Anonymous
Not applicable

Concatenate rows values based on filter context

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

1 ACCEPTED SOLUTION
Anonymous
Not applicable

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

View solution in original post

1 REPLY 1
Anonymous
Not applicable

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

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.