Need help generating a table

Frick

New Member
Joined
Mar 10, 2006
Messages
32
I need some help trying to generate a matrix, I think, or maybe just a table.

For example:

In B8:B127 = Months 1 through 120
Column C8:C127 = a #
Colums D through M represents production levels

What I want to be able to do is when I enter a number in say C10=2 then a table is generated returning the following:
D10:D21 2 is entered in each cell
E22:E33 2 is entered in each cell
F34:F45 2 is entered in each cell
G46:G57 2 is entered in each cell
H58:H69 2 is entered in each cell

This table continues out to Col M.

Once the table is generated I need to be able to generate additional tables and add them all together.

Is this possible?
 
Oaktree... I tried the formula and it works except that it enters the result one month later then it should. With 2 entered into C10, the expected well retierment month 10 years later would be month 122 which is row 130 so N130 should return -2. This is not the case. Cell N131 returns the -2. Am I doing something wrong here?
 
Upvote 0

Excel Facts

Easy bullets in Excel
If you have a numeric keypad, press Alt+7 on numeric keypad to type a bullet in Excel.
Hmm. Maybe your formula started in row 7 before you copied down?
If
Code:
C10 = 2
and
Code:
N130=IF(ROW()-ROW($E$7)<(12*(COLUMN()-COLUMN($D$8))+1),"N/A",-OFFSET(C130,-12*(COLUMN()-COLUMN($D$8)),0))

I'm getting N130 to be -2 as expected
 
Upvote 0

Forum statistics

Threads
1,214,849
Messages
6,121,922
Members
449,056
Latest member
denissimo

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