Hi,
I have a vlookup that extracts two names from one cell on another tracker
=VLOOKUP(B4,'[Project Tracker.xlsx]MAIN'!$1:$1048576,114,FALSE)
This gives the correct result of;
John Smith & Joe Bloggs
I need to separate both these names into two cells,
Cell A14 would need to be John Smith =LEFT(A15,FIND("&",A15)-1)
Cell A15 would need to be Joe Bloggs =RIGHT(A14,LEN(A14)-FIND("&",A14))
So in other words, the text in A14 before the & and the text in A15 after the &
Is this possible?
Many thanks
I have a vlookup that extracts two names from one cell on another tracker
=VLOOKUP(B4,'[Project Tracker.xlsx]MAIN'!$1:$1048576,114,FALSE)
This gives the correct result of;
John Smith & Joe Bloggs
I need to separate both these names into two cells,
Cell A14 would need to be John Smith =LEFT(A15,FIND("&",A15)-1)
Cell A15 would need to be Joe Bloggs =RIGHT(A14,LEN(A14)-FIND("&",A14))
So in other words, the text in A14 before the & and the text in A15 after the &
Is this possible?
Many thanks
Last edited: