How to keep a picture in Excel 97 page footer/header?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Any body Pls., tell me "How to keep a picture in Excel 97 page footer or
header?
 
I don't think it's possible in Excel 97. The Microsoft Knowledge Base has an
article about how to do this, and it says it applies to Excel 2000 and Excl
2002. It doesn't mention Excel 97.
 
Umesh

You could use the Worksheet_Change() Event such as

Private Sub Worksheet_Change(ByVal Target As Range)
If Not Application.Intersect(Target, Range("A1")) Is Nothing Then
Range("S1").Select
End If
End Sub

This moves the selection to S1 if the data in A1 changes

HTH
Nick Hodge
 
Hi, Nick:

Did you reply to the wrong message? Umesh's subject is "How to keep a picture
in Excel 97 page footer/header?"

Myrna Larson
 
I can't say what Myrna's specific link is, but I believe she misread it (or
it was mistated) if it says you can do this in Excel 2000. To the best of
my knowledge, this is supported in xl2002 and later:

http://support.microsoft.com/default.aspx?scid=kb;en-us;268071&Product=xlw
XL2000: Unable to Insert Image/Picture into Header or Footer

http://support.microsoft.com/default.aspx?scid=kb;en-us;288964&Product=xlw
HOW TO: Insert a Picture into the Header or Footer in Microsoft Excel 2002

http://support.microsoft.com/default.aspx?scid=kb;en-us;826918&Product=xlw
HOW TO: Insert a Picture into the Header or the Footer in Excel 2003

http://support.microsoft.com/default.aspx?scid=kb;en-us;279305&Product=xlw
XL2002: Picture in Header or Footer Is Not Added to All Grouped Worksheets


http://office.microsoft.com/en-us/assistance/HP030896641033.aspx?Product=xlw
Insert a graphic in a header or footer
 
Tom,
Thanks for those. I've always understood this not to be possible in XL2000,
but would have been interested to be proved wrong.
One link does state "New functionality introduced with Excel 2002..", so I
guess we are out of luck.

NickHK
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top