I would like for the number in the beginning to stay and delete everything including the "/"
123456 / Home so 123456
789012 / Remove so 789012
I would like for the number in the beginning to stay and delete everything including the "/"
123456 / Home so 123456
789012 / Remove so 789012
Last edited by Jerseynjphillypa; 05-24-2012 at 09:23 AM.
Try this...
=LEFT(A1,FIND(" ",A1)-1)
or
=LEFT(A1,FIND("/",A1)-2)
Does that help?
If you want to do this in situ, you can select the column, do a CTRL+H (Find/Replace) and enter this in the Find what box: /*
Leave the other box blank and hit Replace All
Where there is a will there are many ways.
If you are happy with the results, please add to the contributor's reputation by clicking the reputation icon (star icon) below left corner
Please also mark the thread as Solved once it is solved. Check the FAQ's to see how.
I like the "in situ", Vito
yeah, sometimes I like to through out a little Latin ad hoc or ad libitum![]()
thanks for all the help..
Since some times it can also have only three number or have text and number before the /
how would i do a vlookup if I all read have a number in another list but want to extract the text part as per ron advice
=VLOOKUP(Sheet2!A2,Sheet3!$A:$A,1,FALSE) so
=LOOKUP(Sheet2!A2,(LEFT(Sheet3!$A:$A,FIND("/",Sheet3!$A:$A)-2),1,false)
I am trying to pull in the Total from sheet 2 into the Stock on Sheet 3.
Perhaps you can use Sumif or Vlookup with wildcard
e.g.
=SUMIF(Sheet2!$A$2:$A$5,A2&" /*",Sheet2!$B$2:$B$5)
or
=VLOOKUP(A2&" /*",Sheet2!$A$2:$B$5,2,FALSE)
Thanks for the help everyone
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks