Cell reference

projectile

Board Regular
Joined
Dec 14, 2007
Messages
193
is this possible

grab current cell reference from sheet 2 , subtract 18 rows + 7 columns

this will when provide reference to sheet 1 which contains the value

thanks
 

Excel Facts

When did Power Query debut in Excel?
Although it was an add-in in Excel 2010 & Excel 2013, Power Query became a part of Excel in 2016, in Data, Get & Transform Data.
Try

=IF(ISNA(VLOOKUP(OFFSET(I32,-18,-7),Sheet1!$A:$W,2,FALSE)),"",VLOOKUP(OFFSET(I32,-18,-7),Sheet1!$A:$W,2,FALSE))

where I32 is the cell reference on sheet2 where you stick this formula
 
Upvote 0
Hi

Thanks for the formula

it is returning #REF!

here is the formula , pasted into sheet named IM WEEK , cell C4034

=IF(ISNA(VLOOKUP(OFFSET(C4034,-18,-7),'NVO WEEK'!$A:$W,2,FALSE)),"",VLOOKUP(OFFSET(C4034,-18,-7),'NVO WEEK'!$A:$W,2,FALSE))



Is it complaining because the offset is looking at itself?
 
Upvote 0
Does
=OFFSET(C4034,-18,-7)
return a value

can that value be found in
'NVO WEEK'!$A

since vlookup uses the offset value to compare against the first column in the other sheet an returns the value in column 2 (in this example)
 
Upvote 0
Does subtract 18 rows + 7 columns

mean
subtract 18 rows and 7 Columns
OR
subtract 18 rows and add 7 columns
?

Also, assuming that the last variation above is the correct one, should the formula in C4034 simply return the value that is in J4016 of the other sheet?

If that's the case and you just want a relative formula to fill down then all you need is =Sheet1!J4016
 
Upvote 0

Forum statistics

Threads
1,224,558
Messages
6,179,512
Members
452,920
Latest member
jaspers

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