View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
JE McGimpsey JE McGimpsey is offline
external usenet poster
 
Posts: 4,624
Default check for empty cell

One way:

If IsEmpty(Range("A1").Value) Then _
MsgBox "Cell A1 is empty."

In article ,
ingalla wrote:

I need to ckeck if a cell contains a value or if it is empty. If there is
noting in the cell then a msg box needs to be displayed.