Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
What is the excel formula to change John Brown to Brown, John? Thanks!
|
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Karen,
Try this =MID(A1&" "&A1, FIND(" ",A1)+1,LEN(A1)) -- Mike When competing hypotheses are otherwise equal, adopt the hypothesis that introduces the fewest assumptions while still sufficiently answering the question. "Karen" wrote: What is the excel formula to change John Brown to Brown, John? Thanks! |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Hi,
try =TRIM(RIGHT(A1,FIND(" ",A1)-1))&" "&TRIM(LEFT(A1,FIND(" ",A1)-1)) "Karen" wrote: What is the excel formula to change John Brown to Brown, John? Thanks! |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
=MID(A1&", "&A1,FIND(" ",A1)+1,LEN(A1)+1)
"Karen" wrote: What is the excel formula to change John Brown to Brown, John? Thanks! |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Switch names | Excel Worksheet Functions | |||
using the Excel generic worksheet names instead of user-given names in code | Excel Discussion (Misc queries) | |||
Sorting and matching rows of names with Socials with master list and eliminating the extra names | Excel Worksheet Functions | |||
How do I switch the names in a column in Excel | Excel Worksheet Functions | |||
How do I switch names around in excel? | Excel Worksheet Functions |