View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Dmoney Dmoney is offline
external usenet poster
 
Posts: 42
Default Trouble with Elseif command

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

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

End If
End Sub
-----Original 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

.