View Single Post
  #1   Report Post  
Shelley Shepherd via OfficeKB.com
 
Posts: n/a
Default Conditional Macro

I have an Excel workbook which naviagates from sheet to sheet using a
control button to move to the next sheet in the workbook. How can I
program the macro attached to the control button so that if condition X
(False) is met, one moves to sheet A ("Insulin Rate"), but if condition Y
(True) is met, one moves to sheet B ("Prev Gluc 2")? This is what I've
tried thus far:
If ("G1") = False Then
Sheets("Insulin Rate").Activate
Range ("C3").Activate
ElseIf ("G1") = True Then
Sheets("Prev Gluc 2").Activate
Range ("C3").Activate
EndIf

I've also tried using .Select instead of .Activate, but that doesn't work
either. Appreciate your help.

--
Message posted via http://www.officekb.com