How to copy Excel color scheme from one workbook to another

Sometimes when I copy and paste from one book to another, the destination color scheme looks very strange. How do I copy a color scheme from one book to another?

+3


source to share


1 answer


Open VBA and enter the following (change workbook titles)



workbooks("DestinationWorkbook.xlsx").Colors=workbooks("SourceWorkbook.xlsx").Colors

      

+4


source







All Articles