Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
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 the string. Now i want to filter the mail adresses i selected. How can I do that?
Solved! Go to Solution.
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.
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.
mailto: does not use the "//" string.
It is not clear what issue you are trying to solve. Can you explain a bit more? What have you tried and where are you stuck?
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
14 | |
10 | |
10 | |
9 | |
9 |
User | Count |
---|---|
20 | |
13 | |
12 | |
11 | |
8 |