Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hello all,
I have 2 sheets that are identical in format, layout, formulas. The only difference is some cells hold values. One sheet is current period (9/30/2007) and the other sheet is prior period (6/30/2007). We are doing an update sooooo...the data on the Current sheet (9/30/2007) will be moved to the Prior sheet and new data (12/31/2007) will be pasted on the Current sheet. If I group the 2 sheets together, then manually go into each cell on the Current sheet, edit the cell ([F2]) and then hit enter w/o making any changes, the data on both sheets will be the same. But, if I group the 2 sheets together, select the data range on the Current sheet, then run the following code, it does not make the data on the Prior sheet match the data on the Current sheet (Prior's data is unchanged...still 6/30/2007's data and not changed to 9/30/2007's data): Sub LoopCells() Dim c As Range For Each c In Selection c.Value = "zzz" & c.Value c.Value = Replace(c.Value, "zzz", "") Next c End Sub Why not? What is a quick, easy way to accomplish this? Thanks for any help anyone can provide, Conan Kelly |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Replace with Grouped Sheets | Excel Discussion (Misc queries) | |||
Changing footer programmatically in multiple sheets all at once | Excel Programming | |||
Grouped Sheets and Formating | Excel Discussion (Misc queries) | |||
Changing Text in grouped shapes | Excel Programming | |||
Printing Grouped Sheets | Excel Programming |