Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Hi, I would like to enter "equal formulas" that would keep the value and
format of the cells of origins from another worksheet, so that when I change a value or format in a cell from worksheet 1, it is automatically corrected in the worksheet 2. Is it possible? how can I do this? Thanks a lot in advance! |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Hi,
Put this in sheet 2 (or any sheet) and whever A1 in sheet 1 is changed the cell with this in also changes =Sheet1!A1 Mike "Laetitia" wrote: Hi, I would like to enter "equal formulas" that would keep the value and format of the cells of origins from another worksheet, so that when I change a value or format in a cell from worksheet 1, it is automatically corrected in the worksheet 2. Is it possible? how can I do this? Thanks a lot in advance! |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Thanks Mike, but the problem with this is that it keeps only the value but
not the format and I absolutely need the format to be the same. For example if I have in sheet 1 cell A1= 12 (in red and bold), I then need in sheet 2 cell B3 to be equal to A1 that 12 but also in red and bold. How can I do this? Thanks Laetitia "Mike H" wrote: Hi, Put this in sheet 2 (or any sheet) and whever A1 in sheet 1 is changed the cell with this in also changes =Sheet1!A1 Mike "Laetitia" wrote: Hi, I would like to enter "equal formulas" that would keep the value and format of the cells of origins from another worksheet, so that when I change a value or format in a cell from worksheet 1, it is automatically corrected in the worksheet 2. Is it possible? how can I do this? Thanks a lot in advance! |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
In what way does that respond to a format change on sheet 1, Mike?
-- David Biddulph "Mike H" wrote in message ... Hi, Put this in sheet 2 (or any sheet) and whever A1 in sheet 1 is changed the cell with this in also changes =Sheet1!A1 Mike "Laetitia" wrote: Hi, I would like to enter "equal formulas" that would keep the value and format of the cells of origins from another worksheet, so that when I change a value or format in a cell from worksheet 1, it is automatically corrected in the worksheet 2. Is it possible? how can I do this? Thanks a lot in advance! |
#5
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Hi Laetitia,
If you want to replicate your worksheets (format, contents, ...) each sheet should carry its own event macro : Private Sub Worksheet_Deactivate() Sheet1.Cells.Copy Destination:=Sheet2.Range("A1") End Sub HTH |
#6
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]() Hi Carim, thanks for your answer. Except that I have to admit that I'm not an expert when it comes to "event macro". How can I apply what you've indicated concretely? thanks a lot! Laetitia "Carim" wrote: Hi Laetitia, If you want to replicate your worksheets (format, contents, ...) each sheet should carry its own event macro : Private Sub Worksheet_Deactivate() Sheet1.Cells.Copy Destination:=Sheet2.Range("A1") End Sub HTH |
#7
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Anybody to help on the below?
thanks! "Laetitia" wrote: Hi Carim, thanks for your answer. Except that I have to admit that I'm not an expert when it comes to "event macro". How can I apply what you've indicated concretely? thanks a lot! Laetitia "Carim" wrote: Hi Laetitia, If you want to replicate your worksheets (format, contents, ...) each sheet should carry its own event macro : Private Sub Worksheet_Deactivate() Sheet1.Cells.Copy Destination:=Sheet2.Range("A1") End Sub HTH |
#8
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Carim's event code just copies every cell on sheet1 to sheet2.
I don't think you want that. Hopefully Carim will post back with an explanation. Gord Dibben MS Excel MVP On Fri, 11 Jan 2008 08:48:05 -0800, Laetitia wrote: Anybody to help on the below? thanks! "Laetitia" wrote: Hi Carim, thanks for your answer. Except that I have to admit that I'm not an expert when it comes to "event macro". How can I apply what you've indicated concretely? thanks a lot! Laetitia "Carim" wrote: Hi Laetitia, If you want to replicate your worksheets (format, contents, ...) each sheet should carry its own event macro : Private Sub Worksheet_Deactivate() Sheet1.Cells.Copy Destination:=Sheet2.Range("A1") End Sub HTH |
#9
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Formulas, such as =Sheet1!A1 only convey cell Values, not formatting. You
could also transfer formatting if the Conditional Formatting feature were employed on both sheets.......... Vaya con Dios, Chuck, CABGx3 "Laetitia" wrote: Hi, I would like to enter "equal formulas" that would keep the value and format of the cells of origins from another worksheet, so that when I change a value or format in a cell from worksheet 1, it is automatically corrected in the worksheet 2. Is it possible? how can I do this? Thanks a lot in advance! |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
What formula will copy the content & format of the target cell? | Excel Discussion (Misc queries) | |||
Keeping formula format intact | Excel Discussion (Misc queries) | |||
Keeping Text format | Excel Worksheet Functions | |||
Keeping format while concatenating | Excel Discussion (Misc queries) | |||
keeping cell format with formula | Excel Worksheet Functions |