Forum Discussion
New_be
Helper V
5 years agoShow card using dynamic selection
hi expert! 😁 I have a report & i want to show card that will show a certain value (measure) based on certain selection. Below i will show the example. This is example. I have a pie chart, an...
amitchandak
Super User
5 years agoNew_be , As One measure, can not have two data types. So please make sure you format your % measure
if(isfiltered(Table[Section]), [REJECT_YDA] & "" , "Please click the section")
or
if(isfiltered(Table[Block]) || isfiltered(Table[Section]), [REJECT_YDA] & "" , "Please click the section")
In place of [REJECT_YDA] & "" give you formatting % measure in text format
check for format https://docs.microsoft.com/en-us/power-bi/desktop-custom-format-strings
New_be
Helper V
5 years agoalright, thank you so much Mr amitchandak . I will try your way, & then i will feedback again your reply