I’m trying to create a resourcing table where for various projects, we complete how much time they will work on a project in the coming weeks. This is not a timeline or Gantt chart, so it doesn’t have dates, but it does have a list of all the projects and the hours are distributed over the weeks of the work. Instead it has across the top the weeks of the year.
In a second table, we want to summarize how many hours are allocated for each person in each week. I can have a different column for each formula, but I’d love to have it match the first row (number of the week) as a criterion in the first table (again, looking to match the number of the week from that table). But I can’t quite get it to work.
If the formula is done separately for each column, then its as follows:
=SUMIF({PersonResourced}, Person@row, {DatesHours})
But if I want to add a criterion to match also the column number, then I thought a SUMIF formula would work, but I can’t get it down:
=SUMIFS({DatesAndHours}, {PersonResourced}, Person@row, {DateRow}, [9/7]1)
DatesAndHours is all the columns from W1. PersonResourced is the Person column. {DateRow} is the first row where its written what week of the year it is.
Any thoughts?