Go to entered date in Excel for Mac 2016

renpilot

New Member
Joined
Dec 4, 2023
Messages
27
Office Version
  1. 2016
Platform
  1. MacOS
Hello all experts,

I have tried some VBA solutions I found but they don't work (or maybe I am doing something wrong). I read that Excel for Mac is not as advanced, so maybe that is the reason.

I am trying to make Excel for Mac 2016 go to a date that I enter in A2. The date can be in rows b4:nc4 or b11:nc11 or b18:nc18 as I am displaying the days for three years in these rows. The entered dates in the three rows are dd/mm/yyyy but are displayed as dd/mmm to save space. The entered date is in format dd/mm/yy.

I would like this functionality as it is easier to navigate all these dates when an input has to be made in a cell below the specific date. Column A is frozen so the identifiers will always be visible when scrolling through to any given date.

Hope you have ideas :)
 

Attachments

  • Screenshot 2023-12-04 at 18.05.51.png
    Screenshot 2023-12-04 at 18.05.51.png
    212.1 KB · Views: 9
Last try to make it work.
Can you try this function?:

Excel Formula:
=HYPERLINK("[<filename>.xlsx]'<sheetname>'!"&ADDRESS(MAX(ROW($B$4:$NC$18)*($B$4:$NC$18=A2));MAX(COLUMN($B$4:$NC$18)*($B$4:$NC$18=A2)));"Go to...")

where you replace <filename> with your filename and <sheetname> with your sheet name?
For example if you filename is "MyFile" and sheetname is "Sheet1"

Excel Formula:
=HYPERLINK("[MyFile.xlsx]'Sheet1'!"&ADDRESS(MAX(ROW($B$4:$NC$18)*($B$4:$NC$18=A2));MAX(COLUMN($B$4:$NC$18)*($B$4:$NC$18=A2)));"Go to...")

This should work.
 
Upvote 0

Excel Facts

How to change case of text in Excel?
Use =UPPER() for upper case, =LOWER() for lower case, and =PROPER() for proper case. PROPER won't capitalize second c in Mccartney
Another thing to try would be to see if the following function returns the filename or an error:

Excel Formula:
=CELL("filename")
 
Upvote 0
I am sorry, but I am struggling with even the syntax here. My spreadsheet is called test and the =CELL function has two parameters =CELL(info_type;[reference].
I enter in cell G1, but if I enter =CELL(test) or ("test") or ('test') or [test] in the formula all I get is errors.
 
Upvote 0
=HYPERLINK("[test.xlsx]'Sheet1'!"&ADDRESS(MAX(ROW($B$4:$NC$18)*($B$4:$NC$18=A2));MAX(COLUMN($B$4:$NC$18)*($B$4:$NC$18=A2)));"Go to...")

returns #VALUE! error
 
Upvote 0
you should write in a cell just this
Excel Formula:
=CELL("filename")
without the reference which is optional. It should return something like

Code:
C:\Users\<username>\Desktop\[Test.xlsx]Sheet1
Of course on a MAC this would be different.
 
Upvote 0
Can you also try this

Excel Formula:
=HYPERLINK("http://www.google.com";"google")

If this doesn't work then HYPERLINK is not working on you excel version.
 
Upvote 0
I am sorry - I feel like I'm wasting your time.
But here's a screen shot answering your last comment. HYPERLINK works if I open a new blank spreadsheet save it as Alfa and then copy your formula into A1. Could it be something with the test spreadsheet because I first saved it on Dropbox...

I am really struggling with the CELL formula. Even if I use =CELL(Format;A1) in the new blank Alfa spreadsheet I get the #NAME error.
 

Attachments

  • Screenshot 2023-12-06 at 19.39.59.png
    Screenshot 2023-12-06 at 19.39.59.png
    36.1 KB · Views: 4
Upvote 0
Your Google HYPERLINK even works in the test spreadsheet with the calendars in it (the one I started with)...
 
Upvote 0
Have a look at this very simple =HYPERLINK(A2;"Go to:") I tried
 

Attachments

  • Screenshot 2023-12-06 at 20.12.18.png
    Screenshot 2023-12-06 at 20.12.18.png
    137.4 KB · Views: 4
Upvote 0
It is the same if I try hypelink to a cell in Sheet2...
 

Attachments

  • Screenshot 2023-12-06 at 20.28.27.png
    Screenshot 2023-12-06 at 20.28.27.png
    142.3 KB · Views: 3
Upvote 0

Forum statistics

Threads
1,215,069
Messages
6,122,959
Members
449,096
Latest member
Anshu121

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