Home |
Search |
Today's Posts |
#8
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
My previous posting will only remove Oct data. If the text has an aribtrary
number of words and the date is always the last three words in the cell then this little UDF will remove then: Function sweepea(s As String) As String ss = Split(s, " ") For i = 0 To UBound(ss) - 3 sweepea = sweepea & ss(i) & " " Next End Function -- Gary's Student "Sweepea" wrote: Example: Apple and Pear Oct 2,2006 Orange and Lime Oct 30,2006 Pear and Pineapple Oct 6, 2006 I want to remove the date at the end of each cell. Can someone help? Thank you. |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
count specific text that occurs in a range of cells | Excel Discussion (Misc queries) | |||
count cells that begin with specific text | Excel Worksheet Functions | |||
how insert same text in empty cells in column (10000 rows) | Excel Worksheet Functions | |||
extract specific info from cells in a column | New Users to Excel | |||
creating a bar graph | Excel Discussion (Misc queries) |