G0 to cell reference

  • Thread starter Thread starter John
  • Start date Start date
J

John

In Column A, I have 2 years of dates from A2: A732, with the function
"Match" I can locate the cell reference of a specific date but I would like
to be able to go to that cell directly if its possible. I know the function
"Go To" will take me there but am looking for something like a Hyperlink. Is
it possible?
Regards
John
 
With your reference date in, say, D1, put this in E1:

=IF(D1="","",HYPERLINK("#A"&MATCH(D1,A2:A732,0),",jump"))

Just click on the word "jump" to move directly to the appropriate cell
in column A.

Hope this helps.

Pete
 
Actually, because your data starts in A2 and MATCH returns the
relative position, you will have to add 1 to get to the correct cell,
i.e.:

=IF(D1="","",HYPERLINK("#A"&MATCH(D1,A2:A732,0)+1,",jump"))

Hope this helps.

Pete
 
Thank you Pete
It works great
Have a nice day
John
Actually, because your data starts in A2 and MATCH returns the
relative position, you will have to add 1 to get to the correct cell,
i.e.:

=IF(D1="","",HYPERLINK("#A"&MATCH(D1,A2:A732,0)+1,",jump"))

Hope this helps.

Pete
 

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