View Single Post
 
Old 01-05-2013, 02:30 PM
Jennifer Murphy's Avatar
Jennifer Murphy Jennifer Murphy is offline Windows XP Office 2007
Competent Performer
 
Join Date: Aug 2011
Location: Silicon Valley
Posts: 234
Jennifer Murphy is on a distinguished road
Default

I found the answer. Just code a list.
Code:
Select Case UCase(MyString)
   Case ""
     MsgBox "Macro aborted", , MyName
   Case "A"
     Call SubA
   Case "B", "F", "S", "T", "V"
     Call SubMisc
   Case "G"
     Call SubG
   Case Else
     MsgBox "Invalid data"
End Select
Reply With Quote