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
michellepace
Resolver III
Resolver III

Create title from concatenated values in table column

Good morning. 

Is it possible to write a DAX measure for MyTitle as shown below? That is, how do I get the list of values shown in a table and expand them into a concatenated string?

h.png

As always, thank you.
Michelle

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

3 REPLIES 3
amitchandak
Super User
Super User

@michellepace , You can create measure like

concatenatex(Table,[AutoNumber])

 

and add that to title : https://docs.microsoft.com/en-us/power-bi/create-reports/desktop-conditional-format-visual-titles

CNENFRNL
Community Champion
Community Champion

Hi, @michellepace , you may try a measure like this,

Concat =
CONCATENATEX (
    FILTER ( ALL ( tb[AutoNumber] ), tb[AutoNumber] in {69449, 69458} ),
    tb[AutoNumber],
    UNICHAR ( 10 )
)

Thanks to the great efforts by MS engineers to simplify syntax of DAX! Most beginners are SUCCESSFULLY MISLED to think that they could easily master DAX; but it turns out that the intricacy of the most frequently used RANKX() is still way beyond their comprehension!

DAX is simple, but NOT EASY!

Only certain numbers you want to display or entire column values want to display. For certain numbers we can implement dax by CNENFRNL suggested. If you want whatever selected from slicer to this column title we will create more dax.

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.

Top Solution Authors