going to a cell

  • Thread starter Thread starter Jean-Paul De Winter
  • Start date Start date
J

Jean-Paul De Winter

Hi,
when I open a file I would like to jump to a certain cell other then
A1... also jumping from one worksheet to another should bring me to a
cell like D7 instead of A1
how can I do this??
Thanks
JP
 
If you are trying to do it automatically, you'll have to have one of the VBA people help you. But if your looking to open a file and decide you want to manually jump down to cell A3232, then hit F5 and type in A3232 where it says reference. If you want to jump to Sheet 2, then type in Sheet2!A3232

I barely know what I'm talking about on VBA but the automatic option has something to do with:

Sub Auto_Open()


----- Frank Kabel wrote: -----

Hi
this would be only possible with VBA (using an event procedure). See
http://www.cpearson.com/excel/events.htm
for some informatiuon about this

Do you really want to go this way?
 
option explicit
sub auto_open()
application.goto worksheets("sheet1").range("d2"), scroll:=true
end sub

is one way to finish that routine.
 

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