Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I know the simple "=C5" will copy the content of cell C5 but I also want the
cell to copy the format, color, etc. I'm trying to create a schedule where the information can be entered once and repeated into several different cell throughout the worksheet. |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Formulae only return values to their calling cells, they can't return
formatting. For that, you'd need an event macro. For instance, put something like this in your worksheet code module (right-click the worksheet tab and choose View Code): Private Sub Worksheet_Calculate() Range("C5").Copy Destination:=Range("J1, K2, L3") End Sub Note that changing formats doesn't fire an event, so you'll have to initiate a calculation to force the copy. In article , razorman wrote: I know the simple "=C5" will copy the content of cell C5 but I also want the cell to copy the format, color, etc. I'm trying to create a schedule where the information can be entered once and repeated into several different cell throughout the worksheet. |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I know the simple "=C5" will copy the content of cell C5 but I also
want the cell to copy the format, color, etc. I'm trying to create a schedule where the information can be entered once and repeated into several different cell throughout the worksheet. Here’s a way that may work for you, provided no formulas refer to the "different" cells. Any formulas using the value need to refer to the original cell (C5). 1. Select C5 and use Edit Copy 2. Select a "different" cell. 3. While holding down the Shift key, use Edit Paste picture link Repeat steps 2 and 3 for other "different" cells. Notice that the "picture link" size doesn't track changes if you add/delete/resize rows or columns. Basically, it's kind of like a graphic item that floats above the worksheet. There are those caveats, but maybe picture links would work in this situation. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Copy row based on cell content | New Users to Excel | |||
Copy rows based on cell content | Excel Discussion (Misc queries) | |||
How do I copy a formula/paste w/o losing the cell content? | Excel Discussion (Misc queries) | |||
How do you copy a cell's content verses it's formula? | Excel Discussion (Misc queries) | |||
How do I copy a cell (content AND format) from one worksheet to a. | Excel Worksheet Functions |