What you're describing is reminscent of some old Fortran style IF statments.
 
In VBA you CAN use goto's, but it's not really all that common.
In fact, I think they're only keeping them around for backward compatibility.
 
I THINK the equivalent to what you've described is:
 
If RangeName1 < 16 then
...
End If
If RangeName2 < 16 then
...
End If
If RangeName3 = 16 then
...
End If

Paul
-----------------------------------------
“Do all the good you can,
By all the means you can,
In all the ways you can,
In all the places you can,
At all the times you can,
To all the people you can,
As long as ever you can.” - John Wesley
-----------------------------------------

 From: deanalt via MS EXCEL AND VBA MACROS <excel-macros@googlegroups.com>
>To: excel-macros@googlegroups.com 
>Sent: Monday, June 16, 2014 2:43 PM
>Subject: $$Excel-Macros$$ If then
>  
>
>
>I've been gone for a long while and forgot some of what little I knew about 
>proper VBA syntax.  This is an easy one, I'm sure, so would someone kindly 
>help me with the proper syntax on the if and goto statements?  I'm getting 
>things about end ifs without block ifs, etc.  Thanks much, Dean.  I want a vba 
>subroutine in EXCEL that does the following - the range names are all positive 
>integers less than or equal to 16:
>
>
>sub
>
>
>If rangename1 = 16 Then skip the next instruction, i.e., goto to 1000
>'do some things that might not compute if it equals 16, so I don't want it to 
>see these things if 16
>1000 'otherwise don't do anything but continue
>
>
>If rangename2 = 16 Then skip the next instruction,  i.e., goto to 2000
>'do some things that might not compute if it equals 16, so I don't want it to 
>see these things if 16
>
>2000 'otherwise, don't do anything but continue
>
>
>If rangename3 < 16 Then skip the next instruction, i.e., go to 3000
>'do some things that might not compute if it equals 16, so I don't want it to 
>see these things if 16
>
>
>3000 done
>end sub
-- 
>Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be? It’s 
>=TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @ 
>https://www.facebook.com/discussexcel
> 
>FORUM RULES
> 
>1) Use concise, accurate thread titles. Poor thread titles, like Please Help, 
>Urgent, Need Help, Formula Problem, Code Problem, and Need Advice will not get 
>quick attention or may not be answered.
>2) Don't post a question in the thread of another member.
>3) Don't post questions regarding breaking or bypassing any security measure.
>4) Acknowledge the responses you receive, good or bad.
>5) Jobs posting is not allowed.
>6) Sharing copyrighted material and their links is not allowed.
> 
>NOTE  : Don't ever post confidential data in a workbook. Forum owners and 
>members are not responsible for any loss.
>--- 
>You received this message because you are subscribed to the Google Groups "MS 
>EXCEL AND VBA MACROS" group.
>To unsubscribe from this group and stop receiving emails from it, send an 
>email to excel-macros+unsubscr...@googlegroups.com.
>To post to this group, send email to excel-macros@googlegroups.com.
>Visit this group at http://groups.google.com/group/excel-macros.
>For more options, visit https://groups.google.com/d/optout.
>
>
>    

-- 
Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be? It’s 
=TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @ 
https://www.facebook.com/discussexcel

FORUM RULES

1) Use concise, accurate thread titles. Poor thread titles, like Please Help, 
Urgent, Need Help, Formula Problem, Code Problem, and Need Advice will not get 
quick attention or may not be answered.
2) Don't post a question in the thread of another member.
3) Don't post questions regarding breaking or bypassing any security measure.
4) Acknowledge the responses you receive, good or bad.
5) Jobs posting is not allowed.
6) Sharing copyrighted material and their links is not allowed.

NOTE  : Don't ever post confidential data in a workbook. Forum owners and 
members are not responsible for any loss.
--- 
You received this message because you are subscribed to the Google Groups "MS 
EXCEL AND VBA MACROS" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to excel-macros+unsubscr...@googlegroups.com.
To post to this group, send email to excel-macros@googlegroups.com.
Visit this group at http://groups.google.com/group/excel-macros.
For more options, visit https://groups.google.com/d/optout.

Reply via email to