View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.misc
Pete_UK Pete_UK is offline
external usenet poster
 
Posts: 8,856
Default search string with condition

Assuming those entries are in A1:A10, use this array* formula:

=MAX(--RIGHT(A1:A10,LEN(A1:A10)-FIND("-",A1:A10)))

* An array formula has to be committed using Ctrl-Shift-Enter (CSE)
rather than the usual <Enter. If you do this correctly then Excel
will wrap the formula in curly braces { } when viewed in the formula
bar - do not type these yourself. If you subsequently amend/edit the
formula you must use CSE again.

Hope this helps.

Pete


On Jan 18, 1:26*am, pburk wrote:
I have a range of cells with text and numbers. *I need to search the range of
cells for the string with a condition ie, spare-1, spare-2,etc. *then
determine what the maximum number is after the "-". *assistance is greatly
appreciated.