Forum Discussion
DionTN
Helper II
3 years agoDelete rows based on filter
See image. I have a DAX function which creates a mailto string: MailTo = "mailto://"&CONCATENATEX(ALLSELECTED(Blad1),Blad1[Column1],"; ") So all values from Blad1[Column1] are shown in...
- Anonymous3 years ago
Hi DionTN ,
I think you can try this measure to achieve your goal.
MailTo = "mailto://" & IF ( ISFILTERED ( Blad1[Column1] ), CONCATENATEX ( ALLSELECTED ( Blad1 ), Blad1[Column1], "; " ), BLANK () )Result is as below.
By Default:
Isfiltered:
Best Regards,
Rico ZhouIf this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Anonymous
3 years agoNot applicable
Hi DionTN ,
I think you can try this measure to achieve your goal.
MailTo =
"mailto://"
& IF (
ISFILTERED ( Blad1[Column1] ),
CONCATENATEX ( ALLSELECTED ( Blad1 ), Blad1[Column1], "; " ),
BLANK ()
)
Result is as below.
By Default:
Isfiltered:
Best Regards,
Rico Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.