I would like to use a different sheet to aggregate data for the purposes of creating a dashboard.
I am trying to determine the number of minutes a person spends on a specific task for a specific month.
For example, I would like to know how many minutes Jane spent on emails in the month of January.
Sheet column headers are:
Minutes
Names
Task
Date
I am currently using the formula listed below but I would like to use the formula on a separate sheet. And I find this formula a little clunky to work with because I have 9 different tasks I am tracking metrics for - (i.e. email, phone calls, admin work) and 5 different people so it is very cumbersome to update every month.
=SUMIFS(Minutes:Minutes, Names:Names, ="Jane", Task:Task, "Emails", Date:Date, MONTH(@cell) = 1)
Any help would be greatly appreciated!