Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
Is there a function or statement that will convert an email address to the domain? test@gmail.com to gmail.com?
Solved! Go to Solution.
If you are using DAX :
Domain = RIGHT([Email], LEN([Email]) - SEARCH("@", [Email]))
If you are using PQ :
Text.AfterDelimiter([Email], "@")
If you are using DAX :
Domain = RIGHT([Email], LEN([Email]) - SEARCH("@", [Email]))
If you are using PQ :
Text.AfterDelimiter([Email], "@")