If I have the following select cases:
Select Case var
Case 1
doA()
Case 2
doB()
Case 3
'empty
End select
What impact does this empty select case have? Is there an official/legit way to define an empty select case?
Why wouldn’t you omit that case entirely?