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.
Hi all,
In Power Bi i do not find how to use function on an email column
ex: To make difference of Internal and external people of my company, the "-ext" is added to the email
Internal | |
toto@mycompany.com | true |
toto-ext@mycompany.com | false |
test@mycompany.com | true |
I used the CONTAINS function but does not work with "Email" column.. any idea??
External User = CONTAINS(Users,Users[email], "-ext")
Thanks you for your help.
Solved! Go to Solution.
Check out this post: https://community.powerbi.com/t5/Desktop/If-text-column-CONTAINS-specified-value-give-me-what-I-want...
Rather than using CONTAINS, you can use SEARCH and return True/False in the conditional IF statement.
Hi @propionic,
You can also use Find() function to create a calculated column below:
Internal = IF(FIND("-ext",'Table2'[Email],,BLANK())>0,FALSE(),TRUE())
Best Regards,
Qiuyun Yu
Hi @propionic,
You can also use Find() function to create a calculated column below:
Internal = IF(FIND("-ext",'Table2'[Email],,BLANK())>0,FALSE(),TRUE())
Best Regards,
Qiuyun Yu
Check out this post: https://community.powerbi.com/t5/Desktop/If-text-column-CONTAINS-specified-value-give-me-what-I-want...
Rather than using CONTAINS, you can use SEARCH and return True/False in the conditional IF statement.
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 |
---|---|
48 | |
31 | |
27 | |
27 | |
26 |
User | Count |
---|---|
61 | |
56 | |
35 | |
31 | |
28 |