Hyperlink to today's date in a row.

DaveEade

New Member
Joined
Sep 15, 2022
Messages
10
Office Version
  1. 365
Platform
  1. Windows
Morning folks - hope you can help.

I'm trying to create a hyperlink that goes to "today's date" when the date rates sits in one row over multiple columns.

I've seen some videos on you Tube but the all seem to list dates in rows, I've tweaked the formula but it comes back with "Reference isn't valid"

My dates are in the range JF4 - QT4

here is my formula: =HYPERLINK("#4"&MATCH(TODAY(),JF4:QT4,0),"TodaysDate")

Can someone point out where I'm going wrong?

Many Thanks

Dave
 

Excel Facts

Move date out one month or year
Use =EDATE(A2,1) for one month later. Use EDATE(A2,12) for one year later.
HYPERLINK is expecting a range reference. You can build a range reference using the ADDRESS function. For example:

Excel Formula:
=HYPERLINK("#"&ADDRESS(4,COLUMN(XLOOKUP(TODAY(),JF4:QT4,JF4:QT4))),"TodaysDate")
 
Upvote 1
Solution

Forum statistics

Threads
1,223,214
Messages
6,170,771
Members
452,353
Latest member
strainu

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