Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
Flo
 
Posts: n/a
Default EMERGENCY Hyperlink within Woirksheets EMERGENCY

I am trying to automate an online library where sheet one has the drop-down
menu listing names, and sheet 2 has the names in the columns. I have taken
the columns in sheet 2 and defined a specific name for each column --- then I
went to sheet 1 and selected the column/rows that I wanted to
populate/validate with Sheet 2's names. What I want to do next is when
someone request a name from the drop-down names available I would like for
those individual names to have a live hyperlink directed to their email. I
can get this hyperlink to work on Sheet 2, but when I go to sheet 1 and
select the name the hyperlink does not work. In sheet 1 I can make it a
hyperlink, but it does not save it as a hyperlink for later it goes back to
its original non-hyperlink status & I need help EMERGENCY --- THANKS!
  #2   Report Post  
Posted to microsoft.public.excel.misc
Barb Reinhardt
 
Posts: n/a
Default EMERGENCY Hyperlink within Woirksheets EMERGENCY

I'm guessing you are pulling the data from sheet 2 using a VLOOKUP of some
kind. You may need to add HYPERLINK to it on sheet1 to get what you want.

=hyperlink(vlookup())


"Flo" wrote:

I am trying to automate an online library where sheet one has the drop-down
menu listing names, and sheet 2 has the names in the columns. I have taken
the columns in sheet 2 and defined a specific name for each column --- then I
went to sheet 1 and selected the column/rows that I wanted to
populate/validate with Sheet 2's names. What I want to do next is when
someone request a name from the drop-down names available I would like for
those individual names to have a live hyperlink directed to their email. I
can get this hyperlink to work on Sheet 2, but when I go to sheet 1 and
select the name the hyperlink does not work. In sheet 1 I can make it a
hyperlink, but it does not save it as a hyperlink for later it goes back to
its original non-hyperlink status & I need help EMERGENCY --- THANKS!

  #3   Report Post  
Posted to microsoft.public.excel.misc
Flo
 
Posts: n/a
Default EMERGENCY Hyperlink within Woirksheets EMERGENCY

Hi Barb:

Sorry, I do not know what a VLOOKUP is? I have been lucky in getting the
items from Sheet 2 to be generated in a drop-down menu on Sheet 1 --- the
problem is that I want to have the items that they select from the drop-down
menu to automatically hyperlink to the person's e-mail and I can do this on
Sheet 2 list but I can't get it to work on sheet 1 ---PLEASE HELP US :)

"Barb Reinhardt" wrote:

I'm guessing you are pulling the data from sheet 2 using a VLOOKUP of some
kind. You may need to add HYPERLINK to it on sheet1 to get what you want.

=hyperlink(vlookup())


"Flo" wrote:

I am trying to automate an online library where sheet one has the drop-down
menu listing names, and sheet 2 has the names in the columns. I have taken
the columns in sheet 2 and defined a specific name for each column --- then I
went to sheet 1 and selected the column/rows that I wanted to
populate/validate with Sheet 2's names. What I want to do next is when
someone request a name from the drop-down names available I would like for
those individual names to have a live hyperlink directed to their email. I
can get this hyperlink to work on Sheet 2, but when I go to sheet 1 and
select the name the hyperlink does not work. In sheet 1 I can make it a
hyperlink, but it does not save it as a hyperlink for later it goes back to
its original non-hyperlink status & I need help EMERGENCY --- THANKS!

  #4   Report Post  
Posted to microsoft.public.excel.misc
Barb Reinhardt
 
Posts: n/a
Default EMERGENCY Hyperlink within Woirksheets EMERGENCY

I'm really not clear on how you are getting the information from Sheet 2.
I'd be glad to help if you could be more specific.

"Flo" wrote:

I am trying to automate an online library where sheet one has the drop-down
menu listing names, and sheet 2 has the names in the columns. I have taken
the columns in sheet 2 and defined a specific name for each column --- then I
went to sheet 1 and selected the column/rows that I wanted to
populate/validate with Sheet 2's names. What I want to do next is when
someone request a name from the drop-down names available I would like for
those individual names to have a live hyperlink directed to their email. I
can get this hyperlink to work on Sheet 2, but when I go to sheet 1 and
select the name the hyperlink does not work. In sheet 1 I can make it a
hyperlink, but it does not save it as a hyperlink for later it goes back to
its original non-hyperlink status & I need help EMERGENCY --- THANKS!

  #5   Report Post  
Posted to microsoft.public.excel.misc
Flo
 
Posts: n/a
Default EMERGENCY Hyperlink within Woirksheets EMERGENCY

Barb:

This is an example I typed in the names of the Book or CD then added the
name of who owns that book and typed in their e-mail address into Sheet 2
Column A1:A50

Then, I bolded all of the areas that I wanted to fall under a certain name
and I went to the top menu to Insert --- Name --- Define & named it Names

Then, I went to Sheet 1 went to Data --- Validation --- Selected List in
the Source area I typed in =Name and all of a sudden column A1:A50 had a
drop-down menu showing those names from Sheet 2 --- does that help? Thanks!

"Barb Reinhardt" wrote:

I'm really not clear on how you are getting the information from Sheet 2.
I'd be glad to help if you could be more specific.

"Flo" wrote:

I am trying to automate an online library where sheet one has the drop-down
menu listing names, and sheet 2 has the names in the columns. I have taken
the columns in sheet 2 and defined a specific name for each column --- then I
went to sheet 1 and selected the column/rows that I wanted to
populate/validate with Sheet 2's names. What I want to do next is when
someone request a name from the drop-down names available I would like for
those individual names to have a live hyperlink directed to their email. I
can get this hyperlink to work on Sheet 2, but when I go to sheet 1 and
select the name the hyperlink does not work. In sheet 1 I can make it a
hyperlink, but it does not save it as a hyperlink for later it goes back to
its original non-hyperlink status & I need help EMERGENCY --- THANKS!



  #6   Report Post  
Posted to microsoft.public.excel.misc
Barb Reinhardt
 
Posts: n/a
Default EMERGENCY Hyperlink within Woirksheets EMERGENCY

This may not be pretty, but it will work. Let's say your hyperlink TEXT is
in cell A1. In cell B1, enter the following
=hyperlink(A1)

You could also use VLOOKUP to do this:

Let's say you have your book name in Sheet1 Cell A2
On Sheet 2, you have two columns of data, first has the book name and the
second has the email address. Let's also assume that your data (without
headers) on sheet2 is in cells A2:B100

On Sheet1 Cell B2 enter the following:

=hyperlink(VLOOKUP(a2,sheet2!A$2:B$100,2,false))


"Flo" wrote:

Barb:

This is an example I typed in the names of the Book or CD then added the
name of who owns that book and typed in their e-mail address into Sheet 2
Column A1:A50

Then, I bolded all of the areas that I wanted to fall under a certain name
and I went to the top menu to Insert --- Name --- Define & named it Names

Then, I went to Sheet 1 went to Data --- Validation --- Selected List in
the Source area I typed in =Name and all of a sudden column A1:A50 had a
drop-down menu showing those names from Sheet 2 --- does that help? Thanks!

"Barb Reinhardt" wrote:

I'm really not clear on how you are getting the information from Sheet 2.
I'd be glad to help if you could be more specific.

"Flo" wrote:

I am trying to automate an online library where sheet one has the drop-down
menu listing names, and sheet 2 has the names in the columns. I have taken
the columns in sheet 2 and defined a specific name for each column --- then I
went to sheet 1 and selected the column/rows that I wanted to
populate/validate with Sheet 2's names. What I want to do next is when
someone request a name from the drop-down names available I would like for
those individual names to have a live hyperlink directed to their email. I
can get this hyperlink to work on Sheet 2, but when I go to sheet 1 and
select the name the hyperlink does not work. In sheet 1 I can make it a
hyperlink, but it does not save it as a hyperlink for later it goes back to
its original non-hyperlink status & I need help EMERGENCY --- THANKS!

  #7   Report Post  
Posted to microsoft.public.excel.misc
Flo
 
Posts: n/a
Default EMERGENCY Hyperlink within Woirksheets EMERGENCY

Barb:

We are still not sure how to do this --- can we send you the Excel to your
e-mail and you do the formula and see if it works --- thanks!

Flo

"Flo" wrote:

I am trying to automate an online library where sheet one has the drop-down
menu listing names, and sheet 2 has the names in the columns. I have taken
the columns in sheet 2 and defined a specific name for each column --- then I
went to sheet 1 and selected the column/rows that I wanted to
populate/validate with Sheet 2's names. What I want to do next is when
someone request a name from the drop-down names available I would like for
those individual names to have a live hyperlink directed to their email. I
can get this hyperlink to work on Sheet 2, but when I go to sheet 1 and
select the name the hyperlink does not work. In sheet 1 I can make it a
hyperlink, but it does not save it as a hyperlink for later it goes back to
its original non-hyperlink status & I need help EMERGENCY --- THANKS!

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Hyperlink function fails when using variable row number Balex Excel Worksheet Functions 5 April 8th 06 06:35 AM
answer to odd results when comparing hyperlink addresses Patricia Shannon Links and Linking in Excel 0 March 9th 06 07:28 PM
Hyperlink won't open any other XLS file Jinx1966 Excel Discussion (Misc queries) 2 February 9th 06 08:26 AM
Using the Hyperlink Function and finding filenames Jeni Q Excel Worksheet Functions 0 September 20th 05 02:37 PM
Importing Data from an Access Database Including a Hyperlink Colum B.C.Lioness Excel Discussion (Misc queries) 0 May 16th 05 05:26 PM


All times are GMT +1. The time now is 10:09 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"