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.
Written by Allen Wyatt (last updated January 2, 2021)
This tip applies to Excel 2007, 2010, 2013, 2016, 2019, and Excel in Microsoft 365
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:
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:
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.
Save Time and Supercharge Excel! Automate virtually any routine task and save yourself hours, days, maybe even weeks. Then, learn how to make Excel do things you thought were simply impossible! Mastering advanced Excel macros has never been easier. Check out Excel 2010 VBA and Macros today!
Excel provides a number of different ways you can apply formatting to a cell based upon various dynamic conditions. One ...
Discover MoreNeed to merge a bunch of cells together on a regular basis? You'll love the two macros in this tip which can make short ...
Discover MoreThe formatting capabilities provided by Excel are quite diverse. This tip examines how you can use those capabilities to ...
Discover MoreFREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."
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
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.
FREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."
Copyright © 2024 Sharon Parq Associates, Inc.
Comments