web
You’re offline. This is a read only version of the page.
close
Skip to main content

Announcements

News and Announcements icon
Community site session details

Community site session details

Session Id :
Power Platform Community / Forums / Power Apps / Management of people n...
Power Apps
Unanswered

Management of people names in upper and lower case

(0) ShareShare
ReportReport
Posted on by 422

I have a need to structure certain names based on certain products.  For example one product has to be MacDonald and another has to be MacDONALD.

 

There quite a few names that fit these parameters and I have about 1500 names in all formats being entered monthly by just as many people.  Unless I have some sort of formula managing this Human Error abounds.

 

Has anyone dealt with automating this problem in their apps?

 

I am toying with creating a separate table with names that get matched returns the standard, but if there is a formula out there would be better.  Any ideas

Categories:
I have the same question (0)
  • WarrenBelz Profile Picture
    156,417 Most Valuable Professional on at

    Hi @Ventit ,

    You could do this

    With(
     {
     wMac: 
     Left(
     Lower(YourText),
     3
     ) = "mac",
     wMc: 
     Left(
     Lower(YourText),
     2
     ) = "mc"
     },
     With(
     {
     wRem: 
     Upper(
     Right(
     YourText,
     Len(YourText) - 
     If(
     wMac,
     3,
     2
     )
     )
     )
     },
     If(
     wMac,
     "Mac" & wRem,
     wMc,
     "Mc" & wRem,
     YourText
     )
     )
    )

    but watch out for Mackay, Mace etc OR make a list you can add to as you go . . .

  • Ventit Profile Picture
    422 on at

    Thanks Warren,  as you note the variables are significant in this and I guess the only real way to accept the odd Human error.  My issue with that is I also allow for a DIY by the clients besides our team members.  Add to this the Client is served at three levels each with a different approach to what they want on this.  The one that simply wants all upper is my favorite 🙂

Under review

Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.

Helpful resources

Quick Links

Season of Sharing Community Challenge Winners!

Congratulations to our community stars!

Kudos to our 2025 Community Spotlight Honorees

Expanding mentorship, skilling, and AI innovation

Congratulations to the July Top 10 Community Leaders!

These are the community rock stars!

Leaderboard > Power Apps

#1
WarrenBelz Profile Picture

WarrenBelz 358 Most Valuable Professional

#2
11manish Profile Picture

11manish 207 Super User 2026 Season 2

#3
MS.Ragavendar Profile Picture

MS.Ragavendar 150 Super User 2026 Season 2

Last 30 days Overall leaderboard