Forum Discussion
RonaldvdH
Post Patron
6 years agoButton with a measure
Guys, i was checking out the powerbi release video for match 2020 and saw this feature (maybe it was always there but i just saw it :)) The showed me that i can use a measure in a button which i...
- Anonymous6 years ago
HI RonaldvdH,
You can try to use the following measure formula if it meets for your requirement:
String_for_button = IF ( SELECTEDVALUE ( 'Adres Taken'[AP gebied] ) <> BLANK (); "See product details"; "See details for " & CONCATENATEX ( VALUES ( 'Adres Taken'[AP gebied] ); [AP gebied]; "," ) )Regards,
Xiaoxin Sheng
Anonymous
6 years agoNot applicable
HI RonaldvdH,
You can try to use the following measure formula if it meets for your requirement:
String_for_button =
IF (
SELECTEDVALUE ( 'Adres Taken'[AP gebied] ) <> BLANK ();
"See product details";
"See details for "
& CONCATENATEX ( VALUES ( 'Adres Taken'[AP gebied] ); [AP gebied]; "," )
)
Regards,
Xiaoxin Sheng
RonaldvdH
Post Patron
6 years agoAnonymous your solution did the trick it's just that i think ive marked the wrong post as a solution :):)