Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc,microsoft.public.excel.programming,microsoft.public.excel
external usenet poster
 
Posts: 97
Default how to create a bookmark automatically in Excel?

Hi all,

I have a set of experiments that I have to run.

Each time I not only record down all the experiment data but also the
best result so far.

I would like to create a hyperlink which could be automatically linked
to the best result that is in record.

The result records could be huge so it's important to have this
bookmark which can point me to the best result fast, via one single-
click...

I've tried manually creating and inserting hyperlinks, and it
worked...

And now the question is how to do this automatically?

Thanks!
  #2   Report Post  
Posted to microsoft.public.excel.misc,microsoft.public.excel.programming,microsoft.public.excel
external usenet poster
 
Posts: 1,358
Default how to create a bookmark automatically in Excel?

A little more information is needed. How is your data setup? What constitutes
a 'best result'? There is an actual HYPERLINK function that you could maybe
combine with INDIRECT, though you may not need to.

--
John C


"LunaMoon" wrote:

Hi all,

I have a set of experiments that I have to run.

Each time I not only record down all the experiment data but also the
best result so far.

I would like to create a hyperlink which could be automatically linked
to the best result that is in record.

The result records could be huge so it's important to have this
bookmark which can point me to the best result fast, via one single-
click...

I've tried manually creating and inserting hyperlinks, and it
worked...

And now the question is how to do this automatically?

Thanks!

  #3   Report Post  
Posted to microsoft.public.excel.misc,microsoft.public.excel.programming,microsoft.public.excel
external usenet poster
 
Posts: 8,856
Default how to create a bookmark automatically in Excel?

What do you mean by "best result"? Largest, smallest, quickest ?

If they can be defined by means of MAX or MIN etc, then your HYPERLINK
formula can jump directly to the "best".

Please give some more details of your data.

Pete

On Aug 12, 2:19*pm, LunaMoon wrote:
Hi all,

I have a set of experiments that I have to run.

Each time I not only record down all the experiment data but also the
best result so far.

I would like to create a hyperlink which could be automatically linked
to the best result that is in record.

The result records could be huge so it's important to have this
bookmark which can point me to the best result fast, via one single-
click...

I've tried manually creating and inserting hyperlinks, and it
worked...

And now the question is how to do this automatically?

Thanks!


  #4   Report Post  
Posted to microsoft.public.excel.misc,microsoft.public.excel.programming,microsoft.public.excel
external usenet poster
 
Posts: 9,101
Default how to create a bookmark automatically in Excel?

Instead of using a Hyperlink create a macro and set a shortcut key to run the
macro. The macro just need to look up the best result and then select the
first cell in the range.

"LunaMoon" wrote:

Hi all,

I have a set of experiments that I have to run.

Each time I not only record down all the experiment data but also the
best result so far.

I would like to create a hyperlink which could be automatically linked
to the best result that is in record.

The result records could be huge so it's important to have this
bookmark which can point me to the best result fast, via one single-
click...

I've tried manually creating and inserting hyperlinks, and it
worked...

And now the question is how to do this automatically?

Thanks!

  #5   Report Post  
Posted to microsoft.public.excel.misc,microsoft.public.excel.programming,microsoft.public.excel
external usenet poster
 
Posts: 1,358
Default how to create a bookmark automatically in Excel?

test
--
John C


"John C" wrote:

A little more information is needed. How is your data setup? What constitutes
a 'best result'? There is an actual HYPERLINK function that you could maybe
combine with INDIRECT, though you may not need to.

--
John C


"LunaMoon" wrote:

Hi all,

I have a set of experiments that I have to run.

Each time I not only record down all the experiment data but also the
best result so far.

I would like to create a hyperlink which could be automatically linked
to the best result that is in record.

The result records could be huge so it's important to have this
bookmark which can point me to the best result fast, via one single-
click...

I've tried manually creating and inserting hyperlinks, and it
worked...

And now the question is how to do this automatically?

Thanks!



  #6   Report Post  
Posted to microsoft.public.excel.misc,microsoft.public.excel.programming,microsoft.public.excel
external usenet poster
 
Posts: 97
Default how to create a bookmark automatically in Excel?

Yeah, the best result is the smallest number.

And I am using macro to run these experiments, so it's best I just
create the hyperlink while it's running...

Of course creating another macro to obtain the smallest experiment
result during post-processing is also doable...

On Aug 12, 10:49*am, John C <johnc@stateofdenial wrote:
test
--
John C

"John C" wrote:
A little more information is needed. How is your data setup? What constitutes
a 'best result'? There is an actual HYPERLINK function that you could maybe
combine with INDIRECT, though you may not need to.


--
John C


"LunaMoon" wrote:


Hi all,


I have a set of experiments that I have to run.


Each time I not only record down all the experiment data but also the
best result so far.


I would like to create a hyperlink which could be automatically linked
to the best result that is in record.


The result records could be huge so it's important to have this
bookmark which can point me to the best result fast, via one single-
click...


I've tried manually creating and inserting hyperlinks, and it
worked...


And now the question is how to do this automatically?


Thanks!


  #7   Report Post  
Posted to microsoft.public.excel.misc,microsoft.public.excel.programming,microsoft.public.excel
external usenet poster
 
Posts: 8,856
Default how to create a bookmark automatically in Excel?

With your results in A2:A1000, you can put this formula in a blank
cell:

=HYPERLINK("#A"&MATCH(MIN(A2:A1000),A2:A1000,0)+1, "Best")

and if you click on "Best" in the cell the cursor will jump to the
smallest value in the range.

Hope this helps.

Pete

On Aug 12, 4:02*pm, LunaMoon wrote:
Yeah, the best result is the smallest number.

And I am using macro to run these experiments, so it's best I just
create the hyperlink while it's running...

Of course creating another macro to obtain the smallest experiment
result during post-processing is also doable...

On Aug 12, 10:49*am, John C <johnc@stateofdenial wrote:



test
--
John C


"John C" wrote:
A little more information is needed. How is your data setup? What constitutes
a 'best result'? There is an actual HYPERLINK function that you could maybe
combine with INDIRECT, though you may not need to.


--
John C


"LunaMoon" wrote:


Hi all,


I have a set of experiments that I have to run.


Each time I not only record down all the experiment data but also the
best result so far.


I would like to create a hyperlink which could be automatically linked
to the best result that is in record.


The result records could be huge so it's important to have this
bookmark which can point me to the best result fast, via one single-
click...


I've tried manually creating and inserting hyperlinks, and it
worked...


And now the question is how to do this automatically?


Thanks!- Hide quoted text -


- Show quoted text -


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
Excel formula using bookmark name: create click-link 4mula freak Excel Worksheet Functions 1 February 22nd 08 11:43 PM
Microsoft Word bookmark content into an Excel cell using VBA Gaetan Excel Discussion (Misc queries) 1 March 9th 07 10:21 PM
hyperlink from Excel to a Word bookmark Bertie Excel Discussion (Misc queries) 2 May 16th 06 07:51 PM
hyperlink in excel to a bookmark in a pdf r Excel Discussion (Misc queries) 0 May 31st 05 09:50 AM
Excel should allow "select all" and also "insert bookmark" as Wor. scurtin Excel Worksheet Functions 2 November 5th 04 02:46 AM


All times are GMT +1. The time now is 05:32 AM.

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"