Thread: code failure
View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
dreamz[_46_] dreamz[_46_] is offline
external usenet poster
 
Posts: 1
Default code failure


interesting. i have two separate pieces of code that do something, an
now i'm just testing. whenever i run the first macro, the error pops u
in the second one, even though cbMSA was not touched. what's going on?


Code
-------------------

Private Sub cbForm_Change()
If cbForm.Value = "Please select formulary" Then
Range("D42:Y42").AutoFilter Field:=1
Range("D42:Y42").AutoFilter Field:=2
Else
Range("D42:Y42").AutoFilter Field:=1, Criteria1:="Last Update"
Range("D42:Y42").AutoFilter Field:=2, Criteria1:="Abilene, TX"
End If
End Sub

Private Sub cbMSA_Change()
'If cbMSA.Value = "Please select MSA" Then
' Range("D42:Y42").AutoFilter Field:=2
'Else
Range("D42:Y42").AutoFilter Field:=2, Criteria1:="Abilene, TX"
'End If
End Sub

-------------------

--
dream
-----------------------------------------------------------------------
dreamz's Profile: http://www.excelforum.com/member.php...fo&userid=2646
View this thread: http://www.excelforum.com/showthread.php?threadid=54963