I use the following code to replicate the values of cells in a range in one workbook to the corresponding cells in another workbook:
Fairly straightforward and works just fine in replicating the cell values.![]()
ActiveWorkbook.Sheets("Sheet1").Range("D6:K26").Value = _ ThisWorkbook.Sheets("Sheet1").Range("D6:K26").Value
However I also need to replicate the cell colour and font colour attributes for each cell in the range. It wouldn't bother me if it replicated all format attributes, but those are the two that matter most.
Is there a similarly straightforward means to replicate the individual cell's format attributes for the range?
Bookmarks