View Single Post
  #4   Report Post  
Posted to microsoft.public.excel.programming
Bob Phillips[_6_] Bob Phillips[_6_] is offline
external usenet poster
 
Posts: 11,272
Default how to run a macro only if a cell contains a certain value


If LCase(Range("a1").Value) < "K" Then
Exit Sub
End If


Might not get a lot happening here<VBG