Hyperlink view always in top unfrozen column

Kra

Board Regular
Joined
Jul 4, 2022
Messages
160
Office Version
  1. 365
Platform
  1. Windows
Hello!

I have a problem with hyperlinks. I have a huge data sheet so I need them to jump to specific column with month.

Buttons are in frozen columns A-B. Data sheet starts in column C:


2022-07-04 12_44_18-Hyperlink test.xlsm - Excel.png



First button (P01 2021) is linked to cell C1. It works fine. But second button (P01 2021) is linked to cell AE1. When I click it it displays this view:

2022-07-04 12_44_32-Hyperlink test.xlsm - Excel.png


I want it to display column AE in top left corner right after frozen columns AB. Is it possible?
 

Excel Facts

Control Word Wrap
Press Alt+Enter to move to a new row in a cell. Lets you control where the words wrap.
Hello!

I have a problem with hyperlinks. I have a huge data sheet so I need them to jump to specific column with month.

Buttons are in frozen columns A-B. Data sheet starts in column C:


View attachment 68570


First button (P01 2021) is linked to cell C1. It works fine. But second button (P01 2021) is linked to cell AE1. When I click it it displays this view:

View attachment 68571

I want it to display column AE in top left corner right after frozen columns AB. Is it possible?

Edit: First button (P01 2021) is linked to cell C1. It works fine. But second button (P02 2021) is linked to cell AE1. When I click it it displays this view:
 
Upvote 0
Hi, instead of using a hyperlink, you could assign a macro to your button, such as:

VBA Code:
Sub JumptoAE1()
Application.Goto Range("AE1"), True
End Sub
 
Upvote 0
Solution

Forum statistics

Threads
1,214,834
Messages
6,121,873
Members
449,056
Latest member
ruhulaminappu

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