Hi all,
I'm trying to work out the formula for what (in my mind) seems straightforward, but I'm having some issues achieving my goal. Can anyone help?
Here's what I'm trying to achieve:
- If the First day of month column has a date that is the current month , then look at the primary content developer name, and display the actual utilization for that person for the current month.
- In the screenshot below, since the current month is March, I would want the summary to display "8%"
I've highlighted these as PURPLE.
My second formula would be similar:
- If the First day of month column has a date that is the previous month , then look at the primary content developer name, and display the actual utilization for that person for the previous month.
- In the screenshot below, since the current month is March, I would want the summary to display "2%"
I've highlighted these as RED.
The idea of using formulae like this is that I could display them in a report and make a graph, and it would always pull the current and previous month, as opposed to me having to manually update the data each month.
I've tried cobbling some formulae from the community together, but they just display "0" so I don't know what I'm doing wrong - I'm not formula-savvy like so many folks here.
Help me please?
Formula for current month that shows "0" no matter what:
=SUMIFS([Actual Utilization]:[Actual Utilization], [First day of month]:[First day of month], (AND(IFERROR(MONTH(@cell), 1) = MONTH(DATE(YEAR(TODAY()), MONTH(TODAY()), 1)), IFERROR(YEAR(@cell), 1) = YEAR(DATE(YEAR(TODAY()), MONTH(TODAY()), 1)))), [Primary Content Developer]:[Primary Content Developer], CONTAINS("David Acord", @cell))