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

Power BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.

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

@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

Full Power BI Video 20 Hours YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

View solution in original post

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

Full Power BI Video 20 Hours YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube
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
June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

Check out the June 2025 Power BI update to learn about new features.

June 2025 community update carousel

Fabric Community Update - June 2025

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