New to the Board, help w/ hyperlinking

T

thenine

Hello,

I need some help with hyperlinking. I know how to hyperlink from a
cell, to a word document, to an excel document, and even to other cells
or worksheets within the same document.

My question is how do you hyperlink from a cell to a specific worksheet
inside of a seperte excel file?


basically i want to click on a link in one excel file and have that
link pull up a specific worksheet inside of difrent excel file.

Thanks for the help
 
D

David McRitchie

Hi Thenine,
Ctrl+K or right click on cell, hyperlinks
look at the symbols on the left

as a worksheet function see
Worksheets in VBA Coding and in Worksheet Formulas
http://www.mvps.org/dmcritchie/excel/sheets.htm

=HYPERLINK("[c:\temp\project_text.xls]'Menu Sheet'!a18", "nice description")
=HYPERLINK("[vlookup.xls]'" & A5 & "'!C5","'" & A5 & "'!C5")
=HYPERLINK("file://x:/mywebsite/dmcritchie/excel/" & A6 & ".htm",A6)
=HYPERLINK("http://www.mvps.org/dmcritchie/excel/" & A7 & ".htm",A7)
 
D

David McRitchie

Actually the four main Excel groups are:

microsoft.public.excel.misc
- general questions

microsoft.public.excel.newusers
--- new users, questions aren't any simpler though

microsoft.public.excel.worksheet.functions
-- builtin worksheet functions

microsoft.public.excel.programming
-- VBA question / macros /user defined functions
 

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

Similar Threads


Top