Please Note: This article is written for users of the following Microsoft Excel versions: 2007, 2010, 2013, 2016, 2019, and Excel in Microsoft 365. If you are using an earlier version (Excel 2003 or earlier), this tip may not work for you. For a version of this tip written specifically for earlier versions of Excel, click here: Automatically Copying Formatting.

Automatically Copying Formatting

Written by Allen Wyatt (last updated January 2, 2021)
This tip applies to Excel 2007, 2010, 2013, 2016, 2019, and Excel in Microsoft 365


3

One of the foundational features of Excel is to allow one cell to be equal to another cell. For instance, you could use the simplest of formulas in a cell:

=C7

This copies the contents from cell C7 to the current cell, and updates whenever the contents of cell C7 change. What if you are not just interested in copying cell values, but also want to copy formatting from one cell to another?

Unfortunately, there is no intrinsic way to do this in Excel. There are two workarounds you can try, however. First, you can create a macro that will find out whenever cell C7 changes, and if it does, the macro copies the contents of the cell (including formatting) to the target cell. For instance, the following event handler will run every time there are changes in the worksheet. (Provided, of course, that you place it in the VBA module for the worksheet—just right-click on the worksheet's tab, choose View Code, and add the macro there.) When the change is in cell C7, then the contents of C7 are copied to cell E3 on Sheet1.

Private Sub Worksheet_Change(ByVal Target As Range)
    If Not Intersect(Target, Range("C7")) Is Nothing Then
        Range("C7").Copy (Worksheets("Sheet1").Range("E3"))
    End If
End Sub

There are some downsides to this approach. First, it can be slow, particularly if you have quite a few cells that you want to copy in this manner. In addition, the macro only runs if the contents of cell C7 are actually changed, not if the formatting alone of C7 is changed. (There is no way to trigger an automatic event whenever formatting is changed.)

An alternative to the macro approach is to use the Camera tool in Excel. This has been covered in other issues of ExcelTips, but essentially the camera is a way to copy a dynamic image of a range of cells from one place to another. It is the image of the source cells that is shown, and it is shown as a graphic, not as the contents of any target cells. Since the graphic is dynamic, whenever the source cells are changed (including formatting), the image is also updated to reflect the change.

To use the Camera tool, you must customize the Quick Access Toolbar so that the tool is available; it is not available by default. When you are doing your customizing, the Camera tool is easiest to find if you choose to display all commands. The Camera tool has a small camera icon next to it.

With the Camera tool in place, follow these steps to use it:

  1. Select the cells or range of which you want a picture taken.
  2. Click on the Camera tool. The mouse pointer changes to a large plus sign.
  3. Change to a different worksheet.
  4. Click where you want the top left-hand corner of the picture to appear. The picture is inserted as a graphic on the worksheet.

Finally, you could also use conditional formatting on the cells. For instance, if you use conditional formatting to format cell C7 and you place the formula =C7 into cell T45, then you could apply the same conditional format to cell T45 that you used with cell C7. That way, whenever the value in T45 changes (which it will do if the value in C7 changes), then the formatting in T45 changes to match the formatting in cell C7. The only downside to this is that if you change the conditional formatting in one of the cells, you'll need to remember to change it in the other.

Note:

If you would like to know how to use the macros described on this page (or on any other page on the ExcelTips sites), I've prepared a special page that includes helpful information. Click here to open that special page in a new browser tab.

ExcelTips is your source for cost-effective Microsoft Excel training. This tip (8450) applies to Microsoft Excel 2007, 2010, 2013, 2016, 2019, and Excel in Microsoft 365. You can find a version of this tip for the older menu interface of Excel here: Automatically Copying Formatting.

Author Bio

Allen Wyatt

With more than 50 non-fiction books and numerous magazine articles to his credit, Allen Wyatt is an internationally recognized author. He is president of Sharon Parq Associates, a computer and publishing services company. ...

MORE FROM ALLEN

Inserting Text with a Shortcut Key

The AutoText capabilities of Word are quite powerful, allowing you to insert all sorts of "boilerplate" information in ...

Discover More

Using Named Formulas Across Workbooks

You can use the naming capabilities of Excel to name both ranges and formulas. Accessing that named information in a ...

Discover More

Excel Self-Tests

Need to find out how good you are with Excel? Here are some places you can check out to quiz yourself.

Discover More

Excel Smarts for Beginners! Featuring the friendly and trusted For Dummies style, this popular guide shows beginners how to get up and running with Excel while also helping more experienced users get comfortable with the newest features. Check out Excel 2013 For Dummies today!

More ExcelTips (ribbon)

Changing the Default Vertical Alignment

By default, Excel vertically aligns cell contents to the bottom of cells. If you prefer a different default alignment, ...

Discover More

Ensuring Conditional Formatting and Data Validation is Copied

If you use an Excel worksheet for entering data (a quite common task, actually), then you need to be concerned with how ...

Discover More

Formatting for Hundredths of Seconds

When you display a time in a cell, Excel normally displays just the hours, minutes, and seconds. If you want to display ...

Discover More
Subscribe

FREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."

View most recent newsletter.

Comments

If you would like to add an image to your comment (not an avatar, but an image to help in making the point of your comment), include the characters [{fig}] (all 7 characters, in the sequence shown) in your comment text. You’ll be prompted to upload your image when you submit the comment. Maximum image size is 6Mpixels. Images larger than 600px wide or 1000px tall will be reduced. Up to three images may be included in a comment. All images are subject to review. Commenting privileges may be curtailed if inappropriate images are posted.

What is 1 + 1?

2021-03-20 06:18:28

Tom

Here is a picture:

(see Figure 1 below)

Figure 1. 


2021-03-16 05:58:26

Willy Vanhaelen

@TonyK Here is an example for 2 cells (C:7 -> E3, A10 -> B12):Private Sub Worksheet_Change(ByVal Target As Range)If Not Intersect(Target, Union(Range("C7"), Range("A10"))) Is Nothing ThenSelect Case Target.AddressCase "$C$7": Target.Copy Worksheets("Sheet1").Range("E3")Case "$A$10": Target.Copy Worksheets("Sheet1").Range("B12")End SelectEnd IfEnd SubExample for 3 cells (C:7 -> E3, A10 -> B12, A15 -> C10):Private Sub Worksheet_Change(ByVal Target As Range)If Not Intersect(Target, Union(Range("C7"), Range("A10"),Range("A15"))) Is Nothing ThenSelect Case Target.AddressCase "$C$7": Target.Copy Worksheets("Sheet1").Range("E3")Case "$A$10": Target.Copy Worksheets("Sheet1").Range("B12")Case "$A$15": Target.Copy Worksheets("Sheet1").Range("C10")End SelectEnd IfEnd SubNote that the formatting you apply before entering the value is copied along.


2021-03-15 07:51:00

TonyK

Hi Can you tell me how I can apply the follwoing code so that I can apply the same code to several cells in teh worksheet?

Private Sub Worksheet_Change(ByVal Target As Range)
If Not Intersect(Target, Range("C7")) Is Nothing Then
Range("C7").Copy (Worksheets("Sheet1").Range("E3"))
End If
End Sub

Thanks


This Site

Got a version of Excel that uses the ribbon interface (Excel 2007 or later)? This site is for you! If you use an earlier version of Excel, visit our ExcelTips site focusing on the menu interface.

Newest Tips
Subscribe

FREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."

(Your e-mail address is not shared with anyone, ever.)

View the most recent newsletter.