I am trying to manage resources for my projects. I have an assigned owner column and an additional 10 columns to capture individual project participants names, per task. I am trying to calculate the number of tasks assigned to each of them, by month. For example: how many tasks are assigned to Paul for Dec 2022.
I can get the total number of tasks by project using =COUNTIFS({Project Plan - SOP Range 4}, $[Primary Column]@row)
When I try adding date ranges, I get unpareseable or incorrect argument.. Here are some of the formulas I've tried:
- =COUNTIFS({Project Plan - SOP Range 4}, [Primary Column]@row, {Project Plan - SOP Range 5}, <=(11 / 1 / 2022), {Project Plan - SOP Range 7}, >=(11 / 30 / 2022))
- =COUNTIFS({Project Plan - SOP Range 5},IFERROR((@cell), 0) <= DATE (2022, 11, 30), {Project Plan - SOP Range 7}, IFERROR((@cell), 0) >= DATE (2022, 11, 1),{Project Plan - SOP Range 4}, [Primary Column]@row)
- =COUNTIFS({Project Plan - SOP Range 7}, @cell >= DATE(2022, 11, 1), {Project Plan - SOP Range 5}, @cell <= DATE(2022, 11, 30), {Project Plan - SOP Range 4}, [Primary Column]@row)
Project Plan - SOP Range 4 are the owner and particpants (EE1-EE10) columns
Project Plan - SOP Range 5 is the Start Date column
Project Plan - SOP Range 7 is the End Date column
*If possible, I'd also like to bring in Status is Not Completed or Cancelled.
I've looked for hours and can't figure out what I am doing wrong