I have set a workbook open event to capture 2 names ‘MyName’ & ‘BossName’ using:
Private Sub Workbook_Open()
MyName = InputBox(“Enter Your Name”)
BossName = InputBox(“Enter Your Line Managers Name”)
End Sub
I then want to reference the names in severeral worksheet ranges using =MyName & = BossName but am getting #NAME?
I know that I am being DULL here but please aleviate my pain!