Link Cell to another sheet

srizki

Well-known Member
Joined
Jan 14, 2003
Messages
1,857
Office Version
  1. 365
Platform
  1. Windows
It must be easy to do, but I could not do it.
I need to link cells in sheet one to same cells in sheet two. I can do it one by one but there are over 200 that I need to link to.
So if I click cell A1 on sheet one, it should take me to cell A1 on sheet two.

Thanks
 

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.
Select the cells on Sheet1 and copy them. Go to Sheet 2, Edit > Paste Special and click the Paste Link button.
 
Upvote 0
VoG, Thanks but I should explain my question, some one will type an amount on say cell A1 and on sheet two cell A1 he want to type a corresponding project number, so he will type amount and the amount will become hyperlink and if he clicks the amount that should take him to A1 of the sheet two. etc. Same with all other cells.

Thanks
 
Upvote 0
With Sheet1 active click on cell A1; Select Copy;
Click on Sheet2 than Cell A1, Edit, PasteSpecial, Paste Link.

On the pasted cell (Sheet2-Cell A1) go into EDIT MODE (F2)
Remove any $ signs form the Cell references changing it from Absolute to Relative referencing.

Then Copy this same A1 to the other cells in Sheet2; Done

As you enter data into Sheet1 it will automatically appear in the same linked cells in Sheet2.

Hope that helps...

Jim
That will do the initial Set up on Sheet2.
Now
 
Upvote 0
Jim Thank you, but I do not want the sheet one data appear on sheet two, I will be typing some other numbers on the corresponding cell in sheet two, I just want the link so that If I click on the amount on sheet one, it should take me to same cell in sheet two.
I am thinking now that it is possible without code.?
 
Upvote 0
I think that you need code. Right click Sheet1's tab, select View Code and paste in

Code:
Private Sub Worksheet_BeforeDoubleClick(ByVal Target As Range, Cancel As Boolean)
Cancel = True
Application.Goto reference:=Sheets("Sheet2").Range(Target.Address)
End Sub

then press ALT + Q to close the code window. Double click a cell in Sheet1 to be taken to the same cell in Sheet2.
 
Upvote 0
VoG,
that is working exactly as I wanted,

thank you so much.

Sohail
 
Upvote 0

Forum statistics

Threads
1,223,227
Messages
6,170,848
Members
452,361
Latest member
d3ad3y3

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