Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I have a list of data in D15:D3014 (no duplicates).
What i want to do if possible is set up a lookup cell (say in J9) so that when data is entered into cell J9 that matches data in D15:D3014 then the page will scroll to the matching data or create a hyperlink to the matching data.......... |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
=HYPERLINK("#Sheet1!D" &(MATCH(J9,D15:D3014)+14),"go there")
adjust the sheet name to match your sheet name. -- Gary''s Student - gsnu200789 "Charno" wrote: I have a list of data in D15:D3014 (no duplicates). What i want to do if possible is set up a lookup cell (say in J9) so that when data is entered into cell J9 that matches data in D15:D3014 then the page will scroll to the matching data or create a hyperlink to the matching data.......... |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Gary .....your a star, Cheers mate
Charno "Gary''s Student" wrote: =HYPERLINK("#Sheet1!D" &(MATCH(J9,D15:D3014)+14),"go there") adjust the sheet name to match your sheet name. -- Gary''s Student - gsnu200789 "Charno" wrote: I have a list of data in D15:D3014 (no duplicates). What i want to do if possible is set up a lookup cell (say in J9) so that when data is entered into cell J9 that matches data in D15:D3014 then the page will scroll to the matching data or create a hyperlink to the matching data.......... |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Sorry:
=HYPERLINK("#Sheet1!D" &(MATCH(J9,D15:D3014,0)+14),"go there") instead -- Gary''s Student - gsnu200789 "Charno" wrote: I have a list of data in D15:D3014 (no duplicates). What i want to do if possible is set up a lookup cell (say in J9) so that when data is entered into cell J9 that matches data in D15:D3014 then the page will scroll to the matching data or create a hyperlink to the matching data.......... |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
With J9 reserved for you to enter a value, put this in (say) K9:
=IF(J9="","",HYPERLINK("#D"&MATCH(J9,D153:D3014,0) +14,",jump")) The word "jump" will appear in K9 when J9 is not empty - just click on that cell to jump to the appropriate cell in column D. Hope this helps. Pete On May 29, 10:43*am, Charno wrote: I have a list of data in D15:D3014 (no duplicates). What i want to do if possible is set up a lookup cell (say in J9) so that when data is entered into cell J9 that matches data in *D15:D3014 then the page will scroll to the matching data or create a hyperlink to the matching data.......... |
#6
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Sorry, should be D15 not D153.
Hope this helps. Pete On May 29, 11:18*am, Pete_UK wrote: With J9 reserved for you to enter a value, put this in (say) K9: =IF(J9="","",HYPERLINK("#D"&MATCH(J9,D153:D3014,0) +14,",jump")) The word "jump" will appear in K9 when J9 is not empty - just click on that cell to jump to the appropriate cell in column D. Hope this helps. Pete On May 29, 10:43*am, Charno wrote: I have a list of data in D15:D3014 (no duplicates). What i want to do if possible is set up a lookup cell (say in J9) so that when data is entered into cell J9 that matches data in *D15:D3014 then the page will scroll to the matching data or create a hyperlink to the matching data..........- Hide quoted text - - Show quoted text - |
#7
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
What can be done if the data is across columns instead of down rows?
"Pete_UK" wrote: Sorry, should be D15 not D153. Hope this helps. Pete On May 29, 11:18 am, Pete_UK wrote: With J9 reserved for you to enter a value, put this in (say) K9: =IF(J9="","",HYPERLINK("#D"&MATCH(J9,D153:D3014,0) +14,",jump")) The word "jump" will appear in K9 when J9 is not empty - just click on that cell to jump to the appropriate cell in column D. Hope this helps. Pete On May 29, 10:43 am, Charno wrote: I have a list of data in D15:D3014 (no duplicates). What i want to do if possible is set up a lookup cell (say in J9) so that when data is entered into cell J9 that matches data in D15:D3014 then the page will scroll to the matching data or create a hyperlink to the matching data..........- Hide quoted text - - Show quoted text - |
#8
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
You would change the range in the second parameter of the MATCH
function to suit your data, and you will probably need to change the 14 to a number appropriate to your layout. It was 14 in this case because the data started in D15. If your data started in H5, for example, the number would be 7 as H is the 8th column. Hope this helps. Pete On May 29, 4:23*pm, uturnabout wrote: What can be done if the data is across columns instead of down rows? "Pete_UK" wrote: Sorry, should be D15 not D153. Hope this helps. Pete On May 29, 11:18 am, Pete_UK wrote: With J9 reserved for you to enter a value, put this in (say) K9: =IF(J9="","",HYPERLINK("#D"&MATCH(J9,D153:D3014,0) +14,",jump")) The word "jump" will appear in K9 when J9 is not empty - just click on that cell to jump to the appropriate cell in column D. Hope this helps. Pete On May 29, 10:43 am, Charno wrote: I have a list of data in D15:D3014 (no duplicates). What i want to do if possible is set up a lookup cell (say in J9) so that when data is entered into cell J9 that matches data in *D15:D3014 then the page will scroll to the matching data or create a hyperlink to the matching data..........- Hide quoted text - - Show quoted text -- Hide quoted text - - Show quoted text - |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How do I make hyperlink target scroll to the top-left of spreadshe | Excel Discussion (Misc queries) | |||
Change color of cell when different cell has data entered | Excel Discussion (Misc queries) | |||
How do I create a hyperlink to a cell with the hyperlink function | Excel Worksheet Functions | |||
Scroll horizontaly with mouse, create same system used to scroll . | New Users to Excel | |||
Last cell entered | Excel Worksheet Functions |