Hi I have a datatable with a column called Employee Name, currently this pulls through a text value in the form of an email address from a SharePoint list using ThisItem.'Employee Name'
I'm trying to see if I can pull through the characters before the @ symbol or number i.e.
If the text is "Fred.Bloggs@Global.com" I want to just see "Fred.Bloggs" and
If the text is "Fred.Bloggs2@Global.com" I want to just see "Fred.Bloggs" the number could be 1 through to 9.
Also could the fullstop being replaced with a space?
Any ideas appreciated.
Newbeetle.
Solved! Go to Solution.
Hi @newbeetle ,
To get the email address with a space and removing the last character you would do this
With(
{wMail:YourEmailText},
Substitute(
Left(
wMail,
Find(
"@",
wMail
)-2
),
".",
" "
)
)
Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.
Hi @newbeetle ,
To get the email address with a space and removing the last character you would do this
With(
{wMail:YourEmailText},
Substitute(
Left(
wMail,
Find(
"@",
wMail
)-2
),
".",
" "
)
)
Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.
Mant Thanks
The first Microsoft-sponsored Power Platform Conference is coming in September. 100+ speakers, 150+ sessions, and what's new and next for Power Platform.
This training provides practical hands-on experience in creating Power Apps solutions in a full-day of instructor-led App creation workshop.
User | Count |
---|---|
192 | |
45 | |
44 | |
38 | |
35 |
User | Count |
---|---|
262 | |
83 | |
82 | |
70 | |
69 |