Does this require a vba code?

Haydo

Board Regular
Joined
Sep 5, 2011
Messages
95
or is there a function that allows me to...

click on a name in column D, in a worksheet named 'First Base'

and automatically arrive at the corresponding name in column A, of another worksheet (named 'sheet5') in the same workbook.

It is the same as copy+pasting into a Ctrl-F, but there are lots of entries of similar names in this whole workbook, and it would be a big time-saver to go straight to the first entry in col A of 'sheet5'

There are several entries of each name in Column A of Sheet5, but i only require the link/hyperlink etc to arrrive at the 1st entry (searching down the column.)

Any ideas? Thanks.
 

Excel Facts

How to total the visible cells?
From the first blank cell below a filtered data set, press Alt+=. Instead of SUM, you will get SUBTOTAL(9,)
A first example that works on my PC with a file called Book1.xlsx on the C: drive:

=HYPERLINK("[C:\Book1.xlsx]Sheet5!A" & MATCH(E6,'First Base'!$A$1:$A$5,0),"Jump")

E6 is the cell with the contents to be looked for, A1:A5 is the range of cells in which of look.
 
Upvote 0
=HYPERLINK("[C:\Book1.xlsx]Sheet5!A" & MATCH(E6,'First Base'!$A$1:$A$5,0),"Jump")

Thanks for your post.

Where do i put this function?

I have tried a few things, without success.

I have changed the name (book1) to the book i am using, but i would like to know exactly what to do with it.

What cell do i put it into? Do i have to add this function to each of the cells in the respective columns of either worksheet.

Thanks.
 
Upvote 0
What cell do i put it into? Do i have to add this function to each of the cells in the respective columns of either worksheet.

In any cell you like, it will create the hyperlink so you can click on it just like a regular hyperlink.

File names, the path, the ranges, ... you have to adapt to suit but based on your information I would say that this formula is already close to the end result.
 
Upvote 0

Forum statistics

Threads
1,224,606
Messages
6,179,866
Members
452,948
Latest member
UsmanAli786

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top