Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
6 years ago
Solved

Dynamic text returning multiple text values

I have a table with a company name and budget. When i click on the company name i want to have a card with dynamic text that will change to show the names of the markets they are in. How do i make a ...
  • MFelix's avatar
    MFelix
    6 years ago

    Hi Anonymous ,

     

    As you can see below using the measure:

     
    Market concat = CONCATENATEX('Table';'Table'[Market];",")
    I achieve the expected result, are you making a measure or a column? Does your table have the Market more than one time per company?
     
    If you have more than one value per company try the measure
     
    Market concat = CONCATENATEX(DISTINCT('Table'[Market]);'Table'[Market];",")