View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.misc
Glen Glen is offline
external usenet poster
 
Posts: 68
Default deleting vs. filtering . . . HELP!

Try
=IF(AND(T(C4)<C4,C40),"yes","no")

the two conditions check that the cell has a value that is greater than
zero, and that the cell contents aren't text.... the T() function returns
the value of the cell only if the contents are text.

Cheers,

Glen