Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
1 year ago
Solved

Measure to Combine Text Values

I am trying to create a measure (I think) to combine text values to use in a map legend.

 

 

Country Thing
Country A

Dogs

Country ACats
Country B

Dogs

Country CDogs
Country CCats
Country CCats

 

And the result I want is 

Country A : Dogs and Cats

Country B : Dogs

Country C: Dogs and Cats

 

 

Without some kind of measure I just end up with one thing, and if I use something like CONCATENATE X I end up with things listed way too many times, I just want one of each thing that occurs. 

  • Anonymous 

    Measure = CONCATENATEX( DISTINCT('Table'[Thing]), [Thing], " and " )

3 Replies

  • Anonymous's avatar
    Anonymous
    Not applicable

    Brilliant! So glad I got close

  • Greg_Deckler's avatar
    Greg_Deckler
    Community Champion

    Anonymous 

    Measure = CONCATENATEX( DISTINCT('Table'[Thing]), [Thing], " and " )
    • Anonymous's avatar
      Anonymous
      Not applicable

      I'm realizing that I can't use a measure in a map legend.

       

      Is there a way to do this -not- as a measure? I was trying to to do various levels filtered tables to reference the measure to be able to use it, but I can't get around it calculating this before I get my data filtered, so its showing all possible concatenations that exist in the data set - not what's actually in the data being represented in the map