Hello! I am working on linking a database to a results sheet and I need several metrics pulled out. I have Supplier, Defect Column 1, Defect Column 2, Defect Column 3, and date. What I ultimately need to do is create a January through December count of defects per Supplier.
So I have Jan, Feb, Mar, ... Dec. on one axis, and Suppler 1, Suppler 2, ... Supplier 5 on another axis. I want to tally all Defects for each supplier per month.
=SUMIF({Supplier}) = "Supplier 1", AND(MONTH({Inspection Date}) = 1)
This is all I have so far, I feel like I'm on the right track, but now I need to pull in responses from the Defect Columns that match the supplier name, and 1 (in hopes that means January).
Any ideas?