'Select Case' must end with a matching 'End Select'
A Select or Select Case statement occurs without a corresponding End Select statement. An End Select statement must be used to end the Select block.
Error ID: BC30095
To correct this error
If this Select block is part of a set of nested Select blocks, make sure each block is properly terminated.
Add an End Select statement to the end of the Select block.