garythebadger
New Member
Picture a table:
Column A is people's names, with some duplication.
Column B is the date they started a project, no blanks.
Column C is the date they finished a project, no blanks.
They log a new start and end date every time they work on their project.
I want to calculate the total days each person spent on all their projects,
knowing there are gaps and overlap of the dates for any particular name.
Gap, for example: They worked a week, took a week off, worked another week.
Overlap, for example: The dates they log between two rows may overlap if they're working on two projects at the same time. I do not want to include this overlap.
I'm thinking: Calculate the diff between earliest and the latest date for each name,
then subtract the gaps and subtract the overlaps for that name?
Column A is people's names, with some duplication.
Column B is the date they started a project, no blanks.
Column C is the date they finished a project, no blanks.
They log a new start and end date every time they work on their project.
I want to calculate the total days each person spent on all their projects,
knowing there are gaps and overlap of the dates for any particular name.
Gap, for example: They worked a week, took a week off, worked another week.
Overlap, for example: The dates they log between two rows may overlap if they're working on two projects at the same time. I do not want to include this overlap.
I'm thinking: Calculate the diff between earliest and the latest date for each name,
then subtract the gaps and subtract the overlaps for that name?