View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Pete[_21_] Pete[_21_] is offline
external usenet poster
 
Posts: 3
Default Trouble with Elseif command

"Keith" wrote in message ...
Hello all...

trying to run the following simple program but it will not run. Have tried
the offline help and followed the example to the letter but with no luck.
Any ideas would be appreciated.


Sub ContractHighlight()
'
' ContractHighlight Macro
' Macro recorded 23/11/2004 by Keith Holden
'

'If h4 1 Then
Range("A4:M4").Select
Selection.Interior.ColorIndex = 3

ElseIf i4 1 Then
Range("A4:M4").Select
Selection.Interior.ColorIndex = 2

End If
End Sub


If you mean it will not go to the elseif part then it is probably
because the first part was true and therefore never went to the elseif
part.

-Pete