In a Select Case statement, is there an easy way to tell it that for Case Else, I want it to do all of the actions specified in all of the other Case options? I know I can just copy the relevant code, but I’m looking for a simpler, cleaner solution.
SELECT CASE answer
CASE "1"
*Do something*
CASE "2"
*Do something else*
Case "3"
*Do all actions in CASE 1 and in Case 2*
END SELECT
1 Answer