Afternoon All,
I have a list of subs for example (I will actually have 5 in total),
Sub Office1()
Does a thing
End Sub
Sub Office2()
Does a slightly different thing
End Sub
I also have a calculation that leaves lvl = a number between 1 and 5
lvl = 1 '(or 2,3,4,5)
So when I want to call Office1-5 it will depend on a lvl, so what I am looking to do is:
Call "Office" & lvl
I struggled searching this one out as I wasn't sure how to phrase the question.
Hope you can help,
Cheers,
Bill