Hello,
I created a scorecard system to manage performance for our vendor base. I am attempting to pull a report of average rating within the current month. I was able to put a formula together, which is honestly intense, and it worked for the month of November, but as soon as December 1st hit, it wouldn't work. I believe my formula is a bit over the top and can be simplified and made operational.
Current formula is as follows:
=IF(COUNTIFS({Installer}, Installer@row, {EntryDate}, >=DATE(YEAR(TODAY()), MONTH(TODAY()), 1), {EntryDate}, <DATE(YEAR(TODAY()), MONTH(TODAY()) + 1, 1)) > 0, SUMIFS({Rating}, {Installer}, Installer@row, {EntryDate}, >=DATE(YEAR(TODAY()), MONTH(TODAY()), 1), {EntryDate}, <DATE(YEAR(TODAY()), MONTH(TODAY()) + 1, 1)) / COUNTIFS({Installer}, Installer@row, {EntryDate}, >=DATE(YEAR(TODAY()), MONTH(TODAY()), 1), {EntryDate}, <DATE(YEAR(TODAY()), MONTH(TODAY()) + 1, 1)), "N/A")
However, it's way too much and doesn't work as it should.
I was thinking of starting a new formula with the following:
=AVERAGEIF({Installer}, Installer@row, {Rating})
But need to add the "in the month" option that pulls data for only current month, and keeps updating as the new months come along.
{Installer} - Name of installer (multiple line items that need to be averaged within the month)
{Entrydate} - Date of when the score card was entered. This is where we will pull the current month from.
{Rating} - The rating per line item that needs to be averaged within the current month.