Jalpa has attended:
Excel VBA Intro Intermediate course
Select case
How do you structure a select case?
RE: Select case
Jalpa
The Select Case routine has the following structure:
Select Case Country
Case "UK"
DeliveryCost = 2.00
Case "Ireland
DeliveryCost = 2.50
Case Else
DeliveryCost = 4.00
End Select
Hope this helps
Carlos