Forum Discussion
Anonymous
6 years agoNot applicable
Concatnate a Measure and Column
Hi, I have a requirement to show the title of a multi row card (highligthed in the snip) as combination of a Text, column and a Measure. I am able to get the values correctly for each individual ...
- Anonymous6 years ago
Anonymous have you tried CONCATENATE function.
Measure = CONCATENATE(MAX(PageAttempts[Column]),CONCATENATE(": ",CONCATENATE([TotalSuccess],CONCATENATE("/",[Total]))))
Anonymous
6 years agoNot applicable
Thank You Vimal for helping out here.
However the measure work perfectly in table but when it is added to a Multi Row Card visual, it does not group based on "Steps" column rather it just gives the total.
Measure = CONCATENATE(MAX(PageAttempts[Step+Stepname]),CONCATENATE(": ",CONCATENATE([TotalSuccess],CONCATENATE("/",[#Total]))))
card marked in red use the new Measure
Anonymous
6 years agoNot applicable
Hi Anonymous something like this?
- Anonymous6 years agoNot applicable
Thank You Anonymous. Yes this works..
However I was trying to have the concatnate measure as title of the card and %age value as Card data.
so added multiple cards with Steps as filter for each card. something like this..
Thank you very much for providing the solution of the measure that helped a lot.