Conditional Macro

  • Thread starter Shelley Shepherd via OfficeKB.com
  • Start date
S

Shelley Shepherd via OfficeKB.com

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.
 
B

Bob Phillips

If Range("G1").Value = False Then
Sheets("Insulin Rate").Activate
Range ("C3").Activate
ElseIf Range("G1").Value = True Then
Sheets("Prev Gluc 2").Activate
Range ("C3").Activate
EndIf



--

HTH

RP
(remove nothere from the email address if mailing direct)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top