I want to sum column 14 where column 2 is equal to a specific value and column 10 either of 3 values. I tried the one similar to what I did in MS Excel but it’s not working. I also tried the one specified in this link
but still failes. It fails to the 2nd criteria.
These are the samples I tried:
=SUMIFS(INDEX(Deliveries,14),INDEX(Deliveries,2),“0043”, Index(Deliveries,10), {“Unpaid”, “Partial”, “Bad”})
=SUMIFS(INDEX(Deliveries,14),INDEX(Deliveries,2),“0043”, Index(Deliveries,10), “Unpaid|Partial|Bad”)
=SUMIFS(INDEX(Deliveries,14),INDEX(Deliveries,2),“0043”, Index(Deliveries,10), “Unpaid|Partial|Bad”)
Please help, thanks!