View Single Post
  #4   Report Post  
Posted to microsoft.public.excel.misc
Domenic Domenic is offline
external usenet poster
 
Posts: 256
Default if statement where cell is not empty

Try...

=IF(A1<"","Do This","Do Something Else")

Hope this helps!

In article ,
mattguerilla wrote:

when writing if statements, if I want a certain action when the cell is empty
i write - if(A1="","do this","do something else"). But if I want it to do
something when there is anything in the cell in question how do I write the
statement? ie, if(A1="anything","do this","do something else".

Hope I am making sense.

Matt