In Excel 2010, I have a requirement after someone clicks move or copy to a new workbook, to then run the following statement on the new workbook:
Sub CSAColorFormattingSSRS2008()
ActiveWorkbook.Colors = Workbooks("Book4").Colors
End Sub
The problem is that the "Book4" is the previous workbook the sheet came from, but this workbook name can change. Is there a way to do this with a changing workbook name that you are copying from? I am trying to just create a button to run this macro for everyone, but all the past book names are always different.
ActiveWorkbook? – Scott Holtzman Feb 7 at 20:00