Hello,
I am trying to get the number of instances on my 2021 Archive sheet where the "RFI Reason" was equal to "ADCVD". I've tried the following formula but it is giving me the count of all items from last month, not specifically those that have a RFI Reason of ADCVD from last month.
Any assistance would be greatly appreciated as the new guy tries to get the hang of the Smartsheet formula syntax.
=IF(MONTH(TODAY()) = 1, COUNTIFS({Created Date Range}, IFERROR(MONTH(@cell), 0) = 12, {Created Date Range}, IFERROR(YEAR(@cell), 0) = YEAR(TODAY()) - 1), COUNTIFS({Created Date Range}, IFERROR(MONTH(@cell), 0) = MONTH(TODAY()) - 1, {Created Date Range}, IFERROR(YEAR(@cell), 0) = YEAR(TODAY(), COUNTIF({2021 Archive RFI Reason}, "ADCVD"))))