Re: dropdown list to a page in work***
- From: "Epinn" <someone@xxxxxxxxxxxxxxxxxxx>
- Date: Wed, 30 Aug 2006 15:10:43 -0400
I followed Aladin's suggestion and added IF() to check for a blank cell so
that #N/A! wouldn't be displayed. It works beautifully. It's amazing that
one formula does the job. My previous concern about clicking is not
necessary. As soon as an item on the drop-down list is clicked upon, a
hyperlink (in an adjacent cell) is created instantly, confirming Aladin's
statement. Then when I click on the link, I am taken to the appropriate
***.
All in all, it is easier than I have anticipated once the "click" concern is
out of the way.
Thank you for the question and I have learned something practical.
Epinn
"Gord Dibben" <gorddibbATshawDOTca> wrote in message
news:o3e9f2127h8heof4vhj82sfa2es6vgbvlt@xxxxxxxxxx
Thanks for the link. Aladin is pretty sharp.wrote:
Jared could probably use that method.
Hope he is still hanging around.
Gord
On Tue, 29 Aug 2006 17:26:27 -0400, "Epinn" <someone@xxxxxxxxxxxxxxxxxxx>
Reference:="peter"
Gord,
I found the following link on drop down list and hyperlink without using
VBA. Mind you it was Excel 2000. I am not sure about the suggestion and
Jared's need, and wonder what you think.
One line caught my eyes - "This formula creates immediately a clickable
hyperlink."
http://www.mrexcel.com/archive/Formulas/19517.html
Epinn
"Gord Dibben" <gorddibbATshawDOTca> wrote in message
news:qd39f2puj4l6os985kvgdhit1d53rn69dh@xxxxxxxxxx
Jared
Do you have the ranges named in Insert>Name Define?
You could use event code with the DV list in B1
Option Compare Text
Private Sub Worksheet_Change(ByVal Target As Range)
If Intersect(Target, Me.Range("B1")) Is Nothing Then Exit Sub
On Error GoTo endit
Application.EnableEvents = False
Select Case Target.Value
Case "peter"
Application.Goto Reference:="peter"
Case "paul"
Application.Goto Reference:="paul"
Case "mary"
Application.Goto Reference:="mary"
End Select
endit:
Application.EnableEvents = True
End Sub
If ranges are not named, just replace Application.Goto
howwith
<Jared@xxxxxxxxxxxxxxxxxxxxxxxxx>
Sheets("Sheet2").Range("A1").Select
A lot of work if you have a great whack of names.
Gord Dibben MS Excel MVP
On Tue, 29 Aug 2006 11:22:02 -0700, Jared
wrote:
Epinn,
Okay, the first link got me through making the list i needed, but
todo
specifici add a hyper link per name? so clicking the name will get me to a
cell. but each name needs to be to a different location. i might need
theadd
youra event click in vba, but i don't know how to add this to a list.
thanks
Jared
"Epinn" wrote:
Jared,
Shall I say the second link is a continuation of the first link. If
list of valid entries is in a **different workbook** and you follow
useinstructions from link 1, you may get an error message "You may not
2.criteria."references to other worksheets or workbooks for Data Validation
I did and I had to do a get around by using the instructions in link
theIt
post, Imay not be obvious to you until you try it. As I said in my first
had to use INDIRECT() which was the second method stated in link 2.
Depending on your arrangement, you may or may not need link 2 for
linkfix.
doesn'tI included it just in case.
Please look at link 1 and link 2 as part I and part II. If link 1
help you at all, you can ignore link 2. You can also forget about
highlight2,
list.if you use ONE work*** and not two workbooks.
I included the links for your reference as you mentioned drop down
whatThat's all.
Epinn
"Jared" <Jared@xxxxxxxxxxxxxxxxxxxxxxxxx> wrote in message
news:090856F8-2B86-4D5F-92B9-7AF7A8197B89@xxxxxxxxxxxxxxxx
Epinn,
I looked through both links, but i couldn't figure out exactly
throughexactly was i suppose to see in the pages. The first link got me
connected tothe
list, but the second link i did not understand at all how was
my
situation
thanks
"Epinn" wrote:
Hi,
Since you used the term "drop down list," I would like to
thethe
entry/validation. Ifollowing links. However, the purpose is for data
different -am
not surprised if your approach may have to be something very
a
formula/procedure plus hyperlink? I'll let the experts fill in
referencingblank.
http://office.microsoft.com/en-us/assistance/HP052022151033.aspx
http://support.microsoft.com/default.aspx?scid=kb;en-us;211548
Please note that I had to use INDIRECT() in the case of
a
here.**different** workbook (as per the second link above).
Thank you for the question and I am sure I can learn something
worksheet1
Epinn
"Jared" <Jared@xxxxxxxxxxxxxxxxxxxxxxxxx> wrote in message
news:C72BEEFA-C0BC-43E7-87CD-8EF64774C8F1@xxxxxxxxxxxxxxxx
Hi,
I have a list of names in worksheet1
I have a Page for each name in Worksheet2
I need to creat a dropdown list in worksheet2 of names in
which
will allow me to jump to his specific page.
how do i do this?
Thanks,
Jared
Gord Dibben MS Excel MVP
.
- Follow-Ups:
- Re: dropdown list to a page in work***
- From: Jared
- Re: dropdown list to a page in work***
- References:
- Re: dropdown list to a page in work***
- From: Epinn
- Re: dropdown list to a page in work***
- From: Epinn
- Re: dropdown list to a page in work***
- From: Jared
- Re: dropdown list to a page in work***
- From: Gord Dibben
- Re: dropdown list to a page in work***
- From: Epinn
- Re: dropdown list to a page in work***
- From: Gord Dibben
- Re: dropdown list to a page in work***
- Prev by Date: Re: dropdown list to a page in work***
- Next by Date: Re: how do i prevent continued highlighting cells when cursor move
- Previous by thread: Re: dropdown list to a page in work***
- Next by thread: Re: dropdown list to a page in work***
- Index(es):
Loading