Offset question

Poida68

New Member
Joined
Aug 30, 2021
Messages
10
Office Version
  1. 2007
Platform
  1. Windows
Hi all
So I've got some data on my worksheet "Setup Order:" I need to refer to.
For Week 1 the reference is C66:C69 on the Setup Order worksheet
For Week 2 the reference is C70:C72 on the Setup Order worksheet
And so on untill Week 16.
In other words an offset of 4

Now, on my AllResults tab for Week 1 in cell I1 I have the formula
=IF(COUNT(Setup: Order!C66:C69)*3^2=SUM(J8:J43)/3=FALSE,"RECHECK!","")

I want to copy this formula to cell I53 (Week 2) and I need it to be the equivalent of:

=IF(COUNT(Setup Order!C70:C72)*3^2=SUM(J60:J95)/3=FALSE,"RECHECK!","")

to work. How do I accomplish this ?
 

Excel Facts

VLOOKUP to Left?
Use =VLOOKUP(A2,CHOOSE({1,2},$Z$1:$Z$99,$Y$1:$Y$99),2,False) to lookup Y values to left of Z values.
OK, I think I fixed it.

In cell I1 I have =IF(COUNT(Setup: Order!C66:C69)*3^2=SUM(J8:J43)/3=FALSE,"RECHECK!","")

Then in cell I53 I have =IF(COUNT(OFFSET('Setup Order'!C118,4-ROW(I52),0,4))*3^2=SUM(J60:J95)/3=FALSE,"RECHECK!","")

(Since I need to refer to the cell 52 rows below cell I1, and then make this a range offset 4 down).

I can then copy I53 into cell I105 and so on every 52 cells down...
 
Upvote 0
Improved: In cell I1 I have =IF(COUNT(OFFSET('Setup Order'!C66,4*RIGHT($A1,2) - ROW(I1)-3,0,4))*3^2=SUM(J8:J43)/3=FALSE,"RECHECK!","")
 
Upvote 0

Forum statistics

Threads
1,215,053
Messages
6,122,888
Members
449,097
Latest member
dbomb1414

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