Hi @reidnmorrison ,
Here are a couple using the User() function (so just substitute your values) - using FullName
With(
{
_Name:
Split(
User().FullName,
" "
).Value
},
First(_Name).Value & Char(10) & Last(_Name).Value
)
but this may not work with double surnames - another idea with Email if you have a . separator between the names
With(
{
_Name:
Split(
First(
Split(
User().Email,
"@"
)
).Value,
"."
)
},
Proper(First(_Name).Value) & Char(10) & Proper(Last(_Name).Value)
)
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.
MVP (Business Applications) Visit my blog Practical Power Apps