Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
is it possible to search a column (A)
and copy the 1st word of each cell to (B) A B Dopper Zulu = Dopper Korma Xhosa = Korma |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
=LEFT(A1,FIND(" ",A1)-1) and copy down.
-- Gary''s Student - gsnu200802 |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
thanks
"Gary''s Student" wrote: =LEFT(A1,FIND(" ",A1)-1) and copy down. -- Gary''s Student - gsnu200802 |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Assuming first word is followed by an space in all cells
then you can enter the following in B1 and copy down; =LEFT(A1,FIND(" ",A1)) "EngelseBoer" wrote: is it possible to search a column (A) and copy the 1st word of each cell to (B) A B Dopper Zulu = Dopper Korma Xhosa = Korma |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
thanks
"Sheeloo" wrote: Assuming first word is followed by an space in all cells then you can enter the following in B1 and copy down; =LEFT(A1,FIND(" ",A1)) "EngelseBoer" wrote: is it possible to search a column (A) and copy the 1st word of each cell to (B) A B Dopper Zulu = Dopper Korma Xhosa = Korma |
#6
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
On Sun, 7 Sep 2008 02:56:20 -0700, EngelseBoer
wrote: is it possible to search a column (A) and copy the 1st word of each cell to (B) A B Dopper Zulu = Dopper Korma Xhosa = Korma Assuming that there is always at least one space in the cells of column A you can try the following formula: =LEFT(A1,SEARCH(" ",A1)-1) Copy down as far as needed. Hope this helps / Lars-Åke |
#7
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
thanks
"Lars-Ã…ke Aspelin" wrote: On Sun, 7 Sep 2008 02:56:20 -0700, EngelseBoer wrote: is it possible to search a column (A) and copy the 1st word of each cell to (B) A B Dopper Zulu = Dopper Korma Xhosa = Korma Assuming that there is always at least one space in the cells of column A you can try the following formula: =LEFT(A1,SEARCH(" ",A1)-1) Copy down as far as needed. Hope this helps / Lars-Ã…ke |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
return an empty string in VBA | Excel Discussion (Misc queries) | |||
return partial string | Excel Worksheet Functions | |||
need formula to search column for a word and return another word | Excel Discussion (Misc queries) | |||
Sumproduct - Return a String | Excel Discussion (Misc queries) | |||
Return a digit in a string of numbers | Excel Discussion (Misc queries) |