gordon613
gordon613

Reputation: 2952

How to copy an Excel color scheme from one workbook to another

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

Answers (1)

gordon613
gordon613

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

Related Questions