Reputation: 2952
Sometimes when I copy and paste from one workbook to another, the destination color scheme looks very odd. How can I copy the color scheme from one workbook to another
Upvotes: 4
Views: 4564
Reputation: 2952
Open VBA and type the following (changing the names of the workbook as appropriate)
workbooks("DestinationWorkbook.xlsx").Colors=workbooks("SourceWorkbook.xlsx").Colors
Upvotes: 5