How to keep a picture in Excel 97 page footer/header?
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?
|