Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
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?
As always, thank you.
Michelle
Solved! Go to Solution.
@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
@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
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.
User | Count |
---|---|
16 | |
15 | |
14 | |
12 | |
11 |
User | Count |
---|---|
19 | |
15 | |
14 | |
11 | |
9 |