Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I have first name and last name in a single column it goes firstname,
lastname. the file has 8000 names is there any way i can flip it to lastname, firstname? |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Assuming Peter Rowlans is in cell A1, the following formula will show
Rowlands Peter. Depending on your needs, either insert a column alongside the existing one and copy the formula down 8000 rows and leave as that or copy down but then copy and paste value over the original. This formula only works if the names are in the format you stated. =TRIM(MID(A1,FIND(" ",A1,1)+1,LEN(A1)-FIND(" ",A1,1))&" "&LEFT(A1,FIND(" ",A1,1)-1)) HTH Rob "Syed" wrote i n message ... I have first name and last name in a single column it goes firstname, lastname. the file has 8000 names is there any way i can flip it to lastname, firstname? |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Try this
=RIGHT(A1,LEN(A1)-FIND(" ",A1))&" "&LEFT(A1,FIND(" ",A1)-1) "Syed" wrote: I have first name and last name in a single column it goes firstname, lastname. the file has 8000 names is there any way i can flip it to lastname, firstname? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Summing one column if two other columns' values appear in other sh | Excel Worksheet Functions | |||
Return SEARCHED Column Number of Numeric Label and Value | Excel Worksheet Functions | |||
Copy Color Formats Based On Column Date Values | Excel Discussion (Misc queries) | |||
Lookup values in one column to return another | Excel Worksheet Functions | |||
Count Intervals of Filtered TEXT values in Column and Return Count across a Row | Excel Worksheet Functions |