Construction Manpower Schedule
I have a construction schedule for installation which calculates the manpower/day required for each activity. I am trying expand the schedule dates to report manpower/day for each week and then graph that on a line chart. I can not figure out a formula to roll up the manpower for each week so I can then graph that information by each week of the project.
Best Answer
-
Hey @Sean Kelley,
I would start by breaking down the man power for each day. Not sure exactly how your team is structured but it's likely you don't have the same man power per day throughout the entire week. Some days you will have more man power while others you might have less. Knowing this means you want to average the man power needed per week and round up so we don't cut anyone in half.
Make another sheet that lists all the dates for the entire duration of the project. Add a column called "Day Man Power" and insert the formula
=SUMIFS({Reference 1},{Reference 2}, <=Date@row, {Reference 3}, >=Date@row)
With the References being towards your original sheet. If they were on the same sheet it would look like this
=SUMIFS([Man Power]:[Man Power], [Start Date]:[Start Date], <=Date@row, [End Date]:[End Date], >=Date@row)
Then add two more columns for "Week" and for "Week Man Power"
In those rows put your week start dates and add the formula below to the Week Man Power in the top cell.
=ROUNDUP(AVERAGEIF(Date:Date, AND(Week@row <= @cell, Week2 >= @cell), [Day Man Power]:[Day Man Power]), 0)
I added in an image for reference. The two sheets are divided by the yellow line.
Answers
-
Hey @Sean Kelley,
I would start by breaking down the man power for each day. Not sure exactly how your team is structured but it's likely you don't have the same man power per day throughout the entire week. Some days you will have more man power while others you might have less. Knowing this means you want to average the man power needed per week and round up so we don't cut anyone in half.
Make another sheet that lists all the dates for the entire duration of the project. Add a column called "Day Man Power" and insert the formula
=SUMIFS({Reference 1},{Reference 2}, <=Date@row, {Reference 3}, >=Date@row)
With the References being towards your original sheet. If they were on the same sheet it would look like this
=SUMIFS([Man Power]:[Man Power], [Start Date]:[Start Date], <=Date@row, [End Date]:[End Date], >=Date@row)
Then add two more columns for "Week" and for "Week Man Power"
In those rows put your week start dates and add the formula below to the Week Man Power in the top cell.
=ROUNDUP(AVERAGEIF(Date:Date, AND(Week@row <= @cell, Week2 >= @cell), [Day Man Power]:[Day Man Power]), 0)
I added in an image for reference. The two sheets are divided by the yellow line.
-
@Devin Lee Thanks for your help...
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 64.2K Get Help
- 419 Global Discussions
- 221 Industry Talk
- 461 Announcements
- 4.8K Ideas & Feature Requests
- 143 Brandfolder
- 142 Just for fun
- 58 Community Job Board
- 462 Show & Tell
- 32 Member Spotlight
- 1 SmartStories
- 300 Events
- 39 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!