Cell linking to An entirely new Sheet

Isaacamosu

New Member
Joined
Nov 6, 2017
Messages
7
Hi,
I want to know if it is possible ( and if so, how would I do so) To Have a cell in my sheet to when clicked on open another excel sheet.

So:
Press cell A2-> Open Excel Sheet ( Either by download) Unknown

If more clarity is needed on the wanted function , feel free to ask!
 

Excel Facts

What did Pito Salas invent?
Pito Salas, working for Lotus, popularized what would become to be pivot tables. It was released as Lotus Improv in 1989.
You could do it by double click. Put his in the sheet module:

Code:
Private Sub Worksheet_BeforeDoubleClick(ByVal Target As Range, Cancel As Boolean)

If Target.Address(0, 0) = "A2" Then
    Sheets.Add 'create new sheet
End If

End Sub
 
Upvote 0
You do this by adding a hyperlink, right click on the cell and choose hyperlink from the menu and browse to find the Excel workbook that you want to open, or the place inthe current workbook that you want to go to.
 
Last edited:
Upvote 0
So if I wanted to place the link to/have it contain the existing excel sheet in cell "H30" and place a sheet called " TAL Upload" How would this code look
 
Upvote 0

Forum statistics

Threads
1,216,116
Messages
6,128,931
Members
449,480
Latest member
yesitisasport

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