Sequencing Formula

mattyb1811

New Member
Joined
Jun 12, 2018
Messages
3
Hi All,

Would someone please be able to advise the quick way to auto fill a column based on the below pattern?

=Sheet1!H3*Sheet2!B3
=Sheet1!I3*Sheet2!B4
=Sheet1!J3*Sheet2!B5
=Sheet1!K3*Sheet2!B6

New to this so apologise if vague or simple!

Thanks.
 

Excel Facts

Which Excel functions can ignore hidden rows?
The SUBTOTAL and AGGREGATE functions ignore hidden rows. AGGREGATE can also exclude error cells and more.
Welcome to the Board!

What is the exact cell addresses these formulas are going in to?
 
Upvote 0
Thanks,

=Sheet1!H3*Sheet2!B3 into Sheet2!C3

=Sheet1!I3*Sheet2!B4 into Sheet2!C4
=Sheet1!J3*Sheet2!B5 into Sheet2!C5
=Sheet1!K3*Sheet2!B6 into Sheet2!C6
 
Upvote 0
OK, we can use the OFFSET function to do this.
Place this formula in C3 and copy down:
Code:
=OFFSET(Sheet1!$H$3,0,ROW()-3)*OFFSET(Sheet2!$B$3,ROW()-3,0)
 
Upvote 0

Forum statistics

Threads
1,226,112
Messages
6,189,040
Members
453,521
Latest member
Chris_Hed

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