View Single Post
  #4   Report Post  
Posted to microsoft.public.excel.programming
Myrna Larson Myrna Larson is offline
external usenet poster
 
Posts: 863
Default How to keep a picture in Excel 97 page footer/header?

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

On Sun, 10 Oct 2004 21:09:01 -0700, "Nick Hodge"
wrote:

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



"Umesh" wrote:

Any body Pls., tell me "How to keep a picture in Excel 97 page footer or
header?