Absolute Reference from another Worksheet

michaelg1

New Member
Joined
May 18, 2018
Messages
6
How do I use an absolute reference when linking data from a different worksheet? For example when I enter =+'Electric 2018'!$C7/'Use per Tenant'!C$15 it doesn't work.
 
I enter +cell c7 from worksheet Electric 2018 and / by cell c15 on worksheet Use per Tenant. I then put $ in front of c in $c7 and in front of 15 in c$15. And I drag across. However only C$15 remains absolute but $c7 does not. It actually makes the whole c7 absolute.
 
Upvote 0

Excel Facts

Why are there 1,048,576 rows in Excel?
The Excel team increased the size of the grid in 2007. There are 2^20 rows and 2^14 columns for a total of 17 billion cells.
And I drag across. However only C$15 remains absolute but $c7 does not.
It is actually working as expected. Think about it. When you are dragging across, you are just changing the column, not the row. So only the relative (unlocked) column references will change when you drag across.
Likewise, only the relative (unlocked) row references change when you drag a formula down.

To see a real example, add a simple relative reference (nothing locked) like this:
=C7
across and see what happens.
Then drag it down and see what happens.
 
Upvote 0
I see. The issue is that the data I want from the first sheet is going down changing rows. However on sheet 2 when I am dragging the formula I am dragging across changing columns. What formula can I enter to accomplish this?
 
Upvote 0
You can probably use the OFFSET function to do what you want, allow with using ROW() and COLUMN() to return the current row/column references.
For example, let say that in cell A1 on Sheet1, you want to return the value form A1 on Sheet2.
However, as you drag that formula across, you want to return the value from A2 on Sheet2 in cell B1 (instead of B1).
Then you could use a formula like this:
Code:
=OFFSET(Sheet2!$A$1,COLUMN()-1,0)
and drag across.

See here for more details/examples on OFFSET: https://exceljet.net/excel-functions/excel-offset-function
 
Upvote 0

Forum statistics

Threads
1,223,910
Messages
6,175,320
Members
452,635
Latest member
laura12345

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