Sum rows by 3

undemane

Board Regular
Joined
Nov 19, 2007
Messages
75
A B C D E F G H I J ..................GW
----------------------------------------------------------------------------
Program BuildDur Hours 1/10 1/17 1/24 1/31 2/7 2/14.................
Prog 1 1 162 0 0 0 0 1 1...........
WkHrs 0 0 0 0 162 162.......
MonthHrs 0 324
Prog 2 1 200 0 0 0 0 1 1...........
WkHrs 0 0 0 0 200 200.......
MonthHrs 0 400
.
.
data ends in row781.
-------------------------------------------------------------------------
The data "Prog1" is in row 212, "Wk Hrs" in row 213, MonthHrs in row 214. "Prog 2" is in row 215, and so on. I want to create a table in another sheet to look like I've shown below:

Program Build Dur Hours Jan-10 Feb-10 Mar-10......................
Prog1 1 162 0 324 0 .......
Prog2 1 162 0 400 0 .......

Is there an easy way to create the table in Sheet2? How do I make the formula in Sheet 2 look at E214, then skip 3 rows to look at Prog 2 in E217 and so on?

Thank you!
 

Excel Facts

Pivot Table Drill Down
Double-click any number in a pivot table to create a new report showing all detail rows that make up that number
sorry didnt understand 90% of the post, but the 10% that i understood is the part where you wanna look up every 3rd row. you can use =if(mod(row(A1),3)=0,formula if true,"") sort of formula. since you're starting with 214, i would change 0 to 1. so it would be =if(mod(row(A214),3)=0,formula if true,"")
 
Upvote 0

Forum statistics

Threads
1,215,036
Messages
6,122,794
Members
449,095
Latest member
m_smith_solihull

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