View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Ian M Ian M is offline
external usenet poster
 
Posts: 8
Default If statement in Auto_Open

When an Excel Workbook opens, if cell A1 in Sheet1 contains nothing I
want Excel to run Macro1.

If cell A1 in Sheet1 contains the text "Hello", I want Excel to do
nothing.

I've tried this:

If (Sheet1)A:1 = "Hello"
Then
Range("A1").Select
Else
Macro1
End If

but VB gives me the red pen for the first two lines.

Any ideas?

Kind regards

Ian M