Howdy

Is it possible to get a select case inside another select case?

 
sub selecttest()

Select case X
      Select Case Y
                    Case A
                    Case B
                Case Z
                    Case C
                    Case D
      end Select
end Select

end sub
Or something like this, is it possible?