Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount.
Register nowThe Power BI DataViz World Championships are on! With four chances to enter, you could win a spot in the LIVE Grand Finale in Las Vegas. Show off your skills.
Hi,
I have a field with email addresses. I wish to strip out the domain name only, i.e. values from after the @ symbol.
Please advise?
Thanks.
Solved! Go to Solution.
@SachinC A "click" approach would be to go to "Edit Queries" -> Split Column -> Select "By Delimiter" -> Choose "Custom" in drop down -> input the "@" -> select "At each occurence of the delimiter" -> OK
This splits the column and you can delete the column you no longer need.
Try this:
Column = MID([Email],FIND("@",[Email])+1,LEN([Email])-FIND("@",[Email]))
Try this:
Column = MID([Email],FIND("@",[Email])+1,LEN([Email])-FIND("@",[Email]))
Hi Greg,
I want to pick name only from email id. (text before "@")
please help i tried but it's not working
Dynamic Greeting =
var x =FORMAT(USERPRINCIPALNAME(),"")
return
MID(x,FIND("@",x),LEN(x)-FIND("@",x))
@SachinC A "click" approach would be to go to "Edit Queries" -> Split Column -> Select "By Delimiter" -> Choose "Custom" in drop down -> input the "@" -> select "At each occurence of the delimiter" -> OK
This splits the column and you can delete the column you no longer need.
top man.
really good solution
User | Count |
---|---|
132 | |
74 | |
70 | |
58 | |
54 |
User | Count |
---|---|
192 | |
96 | |
67 | |
64 | |
54 |