I have a very basic workbook created on my work pc, along with a set of very basic macros that look essentially like this:
Sub PrintMe()
Sheets("Sheet2").PrintOut
Sheets("Sheet1").Select
End Sub
Not exactly super advanced stuff. We use secure printing at work, so anything printed from my computer is held until I go to the printer, select my staff number from the list, enter in my passcode, and then it prints everything I've sent to the printer.
The macro works great on my pc, no problem at all. However, when I sent the workbook to a colleague.... the printing gets messed up. The first printout they do goes through as my staff number (but with my colleague's passcode). The subsequent prints work fine.
The macros are the same, and the problem exists regardless of which order they choose (either of the 4 macros which are the same, but point to different sheets).
Now... for the some reason, the first instance of any macro appears to be attaching itself to me as the author of the macro.
I'm stumped. Any thoughts or possible solutions for me? Any help is greatly appreciated!