Refer current cell in other sheet

jokr1

New Member
Joined
Jan 10, 2016
Messages
46
I have two sheets, "SheetA" and "SheetB"

Is it possible in SheetB to refer to the same cell in SheetA with the same code no matter which cell in SheetB you use the code?

What I mean is in cell C4 SheetB not refer to C4 in SheetA by using
=SheetA!C4
but rather by using something like:
=SheetA!(same cell as where the code is in SheetB)
 

Excel Facts

Select a hidden cell
Somehide hide payroll data in column G? Press F5. Type G1. Enter. Look in formula bar while you arrow down through G.
Is it possible in SheetB to refer to the same cell in SheetA with the same code no matter which cell in SheetB you use the code?
Not really clear what you mean by this.
Can you provide an ACTUAL example, telling us exactly what is in the cell that you are trying to match up?
And what are you trying to do with this information once you identify the cell?
 
Upvote 0
I wonder if it is possible to use something like

ADDRESS(ROW(),COLUMN())

to address the same cell in another sheet?
 
Upvote 0
Try this:
Code:
=INDIRECT("SheetB!" & ADDRESS(ROW(),COLUMN()))
 
Upvote 0
You are welcome.
Glad I was able to help!
:)
 
Upvote 0

Forum statistics

Threads
1,214,622
Messages
6,120,580
Members
448,972
Latest member
Shantanu2024

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