Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I am trying to get a header in excel to reference to a cell in a different
sheet. Is that possible? Thanks! |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Here is some VBA that will do it:
Sub UpdateHeader() ActiveSheet.PageSetup.LeftHeader = Range("Sheet4!G2").Value End Sub See: XL2000: How to Reference a Cell in the Header or Footer http://support.microsoft.com/default.aspx/kb/273028 If new to VBA visit David McRitchie's site on "getting started" with VBA http://www.mvps.org/dmcritchie/excel/getstarted.htm best wishes -- Bernard V Liengme Microsoft Excel MVP www.stfx.ca/people/bliengme remove caps from email "Karissa" wrote in message ... I am trying to get a header in excel to reference to a cell in a different sheet. Is that possible? Thanks! |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
On Sep 12, 3:34 pm, Karissa wrote:
I am trying to get a header in excel to reference to a cell in a different sheet. Is that possible? Thanks! Supposing the cell on a different sheet is A1 and the different sheet itself is called Sheet2, use this formula: ='Sheet2'!A1 |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Oh you meant page header, not column header... sorry.
On Sep 12, 4:18 pm, ilia wrote: On Sep 12, 3:34 pm, Karissa wrote: I am trying to get a header in excel to reference to a cell in a different sheet. Is that possible? Thanks! Supposing the cell on a different sheet is A1 and the different sheet itself is called Sheet2, use this formula: ='Sheet2'!A1 |
#5
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I do mean page header, sorry I wasn't clear. Does anyone know how to do that?
"ilia" wrote: Oh you meant page header, not column header... sorry. On Sep 12, 4:18 pm, ilia wrote: On Sep 12, 3:34 pm, Karissa wrote: I am trying to get a header in excel to reference to a cell in a different sheet. Is that possible? Thanks! Supposing the cell on a different sheet is A1 and the different sheet itself is called Sheet2, use this formula: ='Sheet2'!A1 |
#6
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Only with VBA as in my first message.
-- Bernard V Liengme Microsoft Excel MVP www.stfx.ca/people/bliengme remove caps from email "Karissa" wrote in message ... I do mean page header, sorry I wasn't clear. Does anyone know how to do that? "ilia" wrote: Oh you meant page header, not column header... sorry. On Sep 12, 4:18 pm, ilia wrote: On Sep 12, 3:34 pm, Karissa wrote: I am trying to get a header in excel to reference to a cell in a different sheet. Is that possible? Thanks! Supposing the cell on a different sheet is A1 and the different sheet itself is called Sheet2, use this formula: ='Sheet2'!A1 |
#7
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Thank you, I really appreciate your help!
"Bernard Liengme" wrote: Only with VBA as in my first message. -- Bernard V Liengme Microsoft Excel MVP www.stfx.ca/people/bliengme remove caps from email "Karissa" wrote in message ... I do mean page header, sorry I wasn't clear. Does anyone know how to do that? "ilia" wrote: Oh you meant page header, not column header... sorry. On Sep 12, 4:18 pm, ilia wrote: On Sep 12, 3:34 pm, Karissa wrote: I am trying to get a header in excel to reference to a cell in a different sheet. Is that possible? Thanks! Supposing the cell on a different sheet is A1 and the different sheet itself is called Sheet2, use this formula: ='Sheet2'!A1 |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
headers in Excel | Excel Discussion (Misc queries) | |||
Excel Headers and Footers??? | Excel Discussion (Misc queries) | |||
Headers in Excel | Excel Discussion (Misc queries) | |||
Excel Headers | Excel Discussion (Misc queries) | |||
Excel Headers | New Users to Excel |