Please take the time to read about [mcve]. As it stands, the code you supplied seems to have nothing useful to do with your question.
Though guessing at an answer, you could extract the code in the Case 9
block out into it's own Sub, and call that from the Case 9
block and from the appropriate point in the Case 5
block. An inelegant solution, but it may be your only choice.
So looking at an example, lets say your code looks something like this
Select Case x
Case 1
'case 1 code
Case 2
'case 2 code
Case 3
'case 3 code
Case 4
'case 4 code
Case 5
'case 5 code
'jump to case 9 code
Case 6
'case 6 code
Case 7
'case 7 code
Case 8
'case 8 code
Case 9
'case 9 code
End Select.
You could create a sub that contains your code in the Case 9
block like so
Private Sub Case9Code()
'case 9 code
End Sub
and now you can rewrite your Select Case
block as ..
Select Case x
Case 1
'case 1 code
Case 2
'case 2 code
Case 3
'case 3 code
Case 4
'case 4 code
Case 5
'case 5 code
Case9Code()
Case 6
'case 6 code
Case 7
'case 7 code
Case 8
'case 8 code
Case 9
Case9Code()
End Select.