A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
Hi Tom,
Norman - Your response may be the answer, but I do not know how to 'replace hard-coded sheet names with the ActiveSheet property", I don't even know what 'hard-coded' or 'ActiveSheet property' refer to.
Please 'dumb down' your response with step by step process.
If the code is only to act on the active sheet, you could avoid the renaming problems by replacing instructions of the type:
Worksheets("Sheet1").Range"A1").Value=100
with
ActiveSheet.Range("A1").Value=100
However, if you post the problematic code, it should be possible to provide a more useful response.
===
Regards,
Norman