My workbook contains several worksheets. I have code that copies and pastes conditionally formatted data between sheets. The data transfers fine but I can't get the
formats to copy over correctly. I have tried different paste commands with no luck. Below is one example. Any suggestions as I have just about pulled all remaining hair out.
Sheets("Members1").Select
Range("A4:B203").Select
Selection.Copy
Sheets("Score Input-Flights").Select
Range("B13:C212").Select
Selection.PasteSpecial Paste:=xlFormats, Operation:=xlNone, SkipBlanks:= _
False, Transpose:=False
Selection.PasteSpecial Paste:=xlValues, Operation:=xlNone, SkipBlanks:= _
False, Transpose:=False
formats to copy over correctly. I have tried different paste commands with no luck. Below is one example. Any suggestions as I have just about pulled all remaining hair out.
Sheets("Members1").Select
Range("A4:B203").Select
Selection.Copy
Sheets("Score Input-Flights").Select
Range("B13:C212").Select
Selection.PasteSpecial Paste:=xlFormats, Operation:=xlNone, SkipBlanks:= _
False, Transpose:=False
Selection.PasteSpecial Paste:=xlValues, Operation:=xlNone, SkipBlanks:= _
False, Transpose:=False