The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
I wanted the first and last name removed from our company email address and have each name Capitalised. Thanks to Text.Proper:
let
Name = (email as any) =>
let
Source = if email = null then
""
else
Text.From(email),
removeDomain = Text.BeforeDelimiter(email,"@"),
replaceDot = Text.Replace(removeDomain,"."," "),
fullName = Text.Proper(replaceDot)
in
fullName
in
Name
Solved! Go to Solution.
I am just sharing and found this to be a simple solution to the problem.
Hi @Anonymous ,
I have a little confused about your scenario.
Is this a problem or a sharing?
If this is a problem, could you share some data sample and your desired output so that we could help further on it?
Best Regards,
Cherry
I am just sharing and found this to be a simple solution to the problem.