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.
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
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:
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.
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.