I know that when you make a CHANGE to a cell on the SUMMARY sheet, it would be simple to copy the formatting of that cell over to sheet1, with something like this:
Private Sub Worksheet_Change(ByVal Target As Range)
Target.Copy
Sheets("Sheet1").Range(Target.Address).PasteSpecial xlPasteFormats
Application.CutCopyMode = False
End Sub
But if the only change you make to a cell is formatting, Excel doesn't deem that important enough to trigger the _Change macro. Ugh.
Maybe something like THIS in the Sheet1 Module:
Private Sub Worksheet_Activate()
On Error GoTo ErrorFix
Application.EnableEvents = False
Application.ScreenUpdating = False
Sheets("Summary").Cells.Copy
Range("A1").PasteSpecial xlPasteFormats
Application.CutCopyMode = False
Range("A1").Select
ErrorFix:
Application.EnableEvents = True
Application.ScreenUpdating = True
End Sub
This effectively just copies all the formatting from the SUMMARY tab to Sheet1 each time you activate Sheet1.
Bookmarks