Inside the Case 1, 2, 3 you would have to check for what i is again to tell which caused it to step into that case

you'd be better off not testing for 1, 2, 3 and simply do a case for each

ie
Code:
Select Case i
  Case 1
    Something
  Case 2
    Something
  Case 3
    And Something
End Select