Is there a way to call specifically designated lines of code within a function from another function. For example:

[VBA]
Sub Testing()

''''' SOME CODE HERE '''''

Test:
msgbox "This is a Test"

End Sub
[/VBA]

[VBA]
Sub Testing2()

Call Testing.Test

End Sub
[/VBA]

I know that's not the way to do it, if it is even possible.