Hi,
I have a sheet that captures hours from a vendor. Hours and rework counts (number of times an issue goes into rework) are entered. I need to sum hours and rework counts for the previous month. I have a calculation in the sheet summary the takes the year and month and forms a YYYY-MM field. I am comparing this sheet summary field to a column in the sheet.
I keep getting an #UNPARSABLE error with the formula I am using. I have checked this against examples and documentation and I don't see where I'm off. Here is the formula for the rework count:
=SUMIF([Completion Date YYYY-MM]:[Completion Date YYYY-MM], [Completion Date YYYY-MM](@cell) =[Previous YYYY-MM]#, [Task Reopen Count]:[Task Reopen Count])
Here are some of the other fields that are used to create this formula:
previous month - =IF(MONTH(TODAY()) = 1, 12, (MONTH(TODAY()) - 1))
previous year - =IF(MONTH(TODAY()) = 1, (YEAR(TODAY()) - 1), (YEAR(TODAY())))
previous YYYY-MM - =[Previous YYYY]# + "-" + [Previous Month]#
Hope someone has some suggestions on where I've gone off the track.
Once this is figured out, I will use the same format for the hours for the previous month.
Thanks