Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I have a colums of thousands of words. How do remove all the characters from
the right including the / sign. The words are of varying length. aτaimar/KXYZfp |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Mike wrote:
I have a colums of thousands of words. How do remove all the characters from the right including the / sign. The words are of varying length. aτaimar/KXYZfp Mike Try the LEFT function with the FIND function. Use a helper column, copy, paste special, values =LEFT(A1,FIND("/",A1)-1) Beege |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Try something like
=+MID(A1,1,FIND("/",A1)-1) Mike wrote: I have a colums of thousands of words. How do remove all the characters from the right including the / sign. The words are of varying length. aτaimar/KXYZfp |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
This is NOT lotus. Lose the +
and LEFT would have been better here. -- Don Guillett SalesAid Software "Rowland" wrote in message ... Try something like =+MID(A1,1,FIND("/",A1)-1) Mike wrote: I have a colums of thousands of words. How do remove all the characters from the right including the / sign. The words are of varying length. a?aimar/KXYZfp |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
when I type in cells the first character goes off | Excel Discussion (Misc queries) | |||
How do I evaluate a row of cells for a character in each cell? | Excel Worksheet Functions | |||
requires that merged cells must be identically sized? | Excel Discussion (Misc queries) | |||
Help adding text values | Excel Worksheet Functions | |||
GET.CELL | Excel Worksheet Functions |