folks, when the number of invoices rejected each month, i generate a report that states the total number of rejections, and the count of each of the possible rejection reasons split out by week. Most reasons are pretty obvious: Cust ID not found, Cust under suspension, etc. to do this, I use a table with all the reasons listed in column C.
Raw data is listed on the Rejections tab:
Formula is
Invoices!CZ$8 and Invoices!DA$8 contain dates
Invoices!$C$2 contains a division name
Column C on the invoices tab contains a list of reasons the invoice may be rejected. these correspond to the reason given on each invoice listed on the Rejections tab. The last reason in the list is actually blank which is for those here who reject the invoice but do not include a reason. Aside from manually filling in the blanks with "Blank" and listing "Blank" as a reason, can anyone suggest another way to capture these?
Raw data is listed on the Rejections tab:
Formula is
Code:
SUMIFS('Rejections'!$C:$C,'Rejections'!$E:$E,">"&"="&Invoices!CZ$8,'Rejections'!$E:$E,"<"&Invoices!DA$8,'Rejections'!$A:$A,Invoices!$C$2,'Rejections'!$V:$V,Invoices!$C53,'Rejections'!$AF:$AF,"<>""0""")
Invoices!CZ$8 and Invoices!DA$8 contain dates
Invoices!$C$2 contains a division name
Column C on the invoices tab contains a list of reasons the invoice may be rejected. these correspond to the reason given on each invoice listed on the Rejections tab. The last reason in the list is actually blank which is for those here who reject the invoice but do not include a reason. Aside from manually filling in the blanks with "Blank" and listing "Blank" as a reason, can anyone suggest another way to capture these?