Need Hyperlink for a wordart to automatically scroll down to todays date

RickerFricker

New Member
Joined
Dec 8, 2017
Messages
3
Hi Everyone,

I have spreadsheet that my team will have to access almost daily. Column A (starting at A3 and going down) is just dates. I am trying to make a Wordart at the top of the page that is clickable, and will take me to today's date. Eventually this will be far down the list. I know how to add a hyperlink, I am just struggling to make this work.

How it looks:
11/20/2017
11/21/2017
11/22/2017


Thank you
 

Excel Facts

Select all contiguous cells
Pressing Ctrl+* (asterisk) will select the "current region" - all contiguous cells in all directions.
Hi & welcome to the board.
Not sure if it's possible with hyperlinks, but you could use VBA.
Code:
Sub FindToday()
Dim Fnd As Range
Set Fnd = Columns(1).Find(Date)
If Not Fnd Is Nothing Then ActiveWindow.ScrollRow = Fnd.Row
End Sub
 
Upvote 0
I am not familiar with Visual Basic. I created a command button and put this in the code. Nothing happens when I click on it. Do I have to add info to these () ?

Sub FindToday()
Dim Fnd As Range
Set Fnd = Columns(1).Find(Date)
If Not Fnd Is Nothing Then ActiveWindow.ScrollRow = Fnd.Row
End Sub
 
Upvote 0
You can use wordart as per your op, once created rightclick & select assign macro & then in the dialogue box that appears select FindToday. then simply click on the wordart
 
Upvote 0
Glad to help & thanks for the feedback
 
Upvote 0

Forum statistics

Threads
1,215,494
Messages
6,125,139
Members
449,207
Latest member
VictorSiwiide

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