Standardizing Names via a Formula

gkllc

New Member
Joined
Oct 22, 2020
Messages
4
Office Version
  1. 365
Platform
  1. Windows
I have data that downloads into excel from a cloud based product that has the customer names captured in 2 standards depending on the download report.
Fname, LName or Lname Fname (yes that's a space between lname & fname)
I need to standardize as to run reports on the data between the two downloads that have no other overlapping field columns.
Though I can do this easily via text to columns I'm trying to create a template that pivots and calculates the data in a way that the users only have to copy the raw data into a tab and other tabs do the work for them.
I'm also trying avoid macro's if possible.
Is there any formula that replicates the text to column functionality as to break out the Fname & Lname uniquely on a sheet?

I've played around with Substitute but I'm still stuck with names in reverse order....

I suspect I'm macro bound but thought I'd ask -

Thank you
 

Excel Facts

Workdays for a market open Mon, Wed, Friday?
Yes! Use "0101011" for the weekend argument in NETWORKDAYS.INTL or WORKDAY.INTL. The 7 digits start on Monday. 1 means it is a weekend.
Welcome to the Forum!

If you have a nice neat space-separated LNAME FNAME in A1, you can easily split out using formulae:

LNAME: =LEFT(A1,FIND(" ",A1)-1)
FNAME: =RIGHT(A1,LEN(A1)-FIND(" ",A1))

But what are the chances your database is this neat? How is it going to accommodate names like Billy Ray Cyrus, Beyonce, Sir Elton John?
 
Upvote 0
Solution
95% are standardized but a few names have credentials after them but those are consistent in the 2 files -

Thanks - will give this a try & report back
 
Upvote 0

Forum statistics

Threads
1,215,055
Messages
6,122,902
Members
449,097
Latest member
dbomb1414

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top