Hi Colin thanks for that. Something isn't quite right though as the macro it calls for seems to freeze, or get stuck (it continually loops the first part by the looks of things). Is there a conflict somewhere?
My macro 3 code is as follows
Range("E37").Select
Selection.Copy
Range("E31").Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Range("C37").Select
Application.CutCopyMode = False
Selection.Copy
Range("C31").Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Range("B20:B29").Select
Application.CutCopyMode = False
Selection.ClearContents
Range("D20:D29").Select
Selection.ClearContents
Range("B7:E29").Select
With Selection.Interior
.Pattern = xlGray50
.PatternThemeColor = xlThemeColorLight1
.ThemeColor = xlThemeColorDark1
.TintAndShade = 0
.PatternTintAndShade = 0
End With
End Sub
Bookmarks