Hyperlink point to specific cell in another sheet

Schturman

Board Regular
Joined
May 28, 2022
Messages
63
Office Version
  1. 2019
Platform
  1. Windows
Hi to all
I need some help with hyperlink that should point to specific cell in another sheet
In Sheet1 I have a row with dates like you can see in the picture:

1730237002165.png


It start from first week of year in A2 (31/12-06/01/2024) and finish in FI2

In Sheet2 I use this formula to jump to a specific cell:

Code:
=HYPERLINK("#'"&C1&"'!"&ADDRESS(2,DAYS(TODAY(),RIGHT(Sheet1!A2,10))/2.27),"Open link")

It working but not exactly to week that I need... For example if date "16/01/2024" it jump to week "07/01-13/01/2024" instead to week "14/01-20/01/2024"
or if "14/01/2024" it jump to week "31/12-06/01/2024" instead to week "14/01-20/01/2024"
Can someone help me to fix my link or maybe to do this completely in different way ? That mean by TODAY() find the correct week in the Sheet1 and jump to it..
Thanks
 

Excel Facts

Select a hidden cell
Somehide hide payroll data in column G? Press F5. Type G1. Enter. Look in formula bar while you arrow down through G.
See if the following formula works for you:
Excel Formula:
=HYPERLINK("#'"&C1&"'!"&ADDRESS(2,(WORKDAY.INTL(TODAY()-1,1,"1111101")-RIGHT(Sheet1!A2,10))/7*3+1),"Open link")
 
Upvote 0
Solution
See if the following formula works for you:
Excel Formula:
=HYPERLINK("#'"&C1&"'!"&ADDRESS(2,(WORKDAY.INTL(TODAY()-1,1,"1111101")-RIGHT(Sheet1!A2,10))/7*3+1),"Open link")
WOW! Thanks ! Working perfectly !
Please can you explain me this part "1111101" ? What it means ?
From the formula WORKDAY.INTL it should be weekend...
Thank you !
 
Upvote 0

Forum statistics

Threads
1,224,568
Messages
6,179,572
Members
452,927
Latest member
whitfieldcraig

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top