Forum Discussion
kolturra
5 years agoHelper IV
First State with % Value
Hi,
i have table like this in which i want to reprsent first value of state name and concentnate with Total %
California 18.76%
Please note that Total % calculaation is comming from DAX on top of it, i need to achieve this. Please help
6 Replies
- AnonymousNot applicable
hi kolturra
Please try
_fmt_str = CONCATENATE(min('Table'[State]),FORMAT(MIN('Table'[Total]),"0%"))Thanks! - kolturraHelper IV
Hi,
Can you please see the below screenshot and help. i should display in card with Max % value
- AnonymousNot applicable
hi kolturra
Here you go
_fmt_str =VAR DIV = CALCULATE(DIVIDE(SELECTEDVALUE('Table'[Sales]),SELECTEDVALUE('Table'[REvenue])))var sta = CONCATENATE(MIN('Table'[State])," -")RETURNCONCATENATE(sta,FORMAT(DIV,"0%"))Thanks!
PS: Kindly accept the solution! I would love to have Kudos! 🙂
- kolturraHelper IV
Hi,
Thanks but we need max % value details in card. can you also please help with that DAX