Forum home » Delegate support and help forum » Microsoft VBA Training and help » vba courses london - IF loop
vba courses london - IF loop
Resolved · Low Priority · Version Standard
Jane has attended:
Excel VBA Intro Intermediate course
Excel Advanced course
IF loop
How do I create an IF loop?
For upcoming training course dates see: Pricing & availability
RE: IF loop
An IF loop allows the user to check several conditions and run the approproate code for each condition. The syntax is
If <condition> Then
<Statement Block>
Else
<Statement Block>
End If
eg
If City = "London" Then
Delivery = 50
Else
Delivery = 75
End If
|
