0

My table has 2 columns:

  • 1 column: seller
  • 2 column: NEW or Repeat

Inside the seller column, we have names like Juan, Pedro, Miguel. I want to count the number of NEW cars that Juan and Pedro have sold.

I know it should be with a COUNTIFS function but haven't been able to build it.

Could someone help me with this, please?

Thanks

JVA
  • 111
  • 4
  • 10

1 Answers1

1

wrap in SUMPRODUCT:

=SUMPRODUCT(COUNTIFS(A:A,{"Juan","Pedro"},B:B,"New"))
Scott Craner
  • 148,073
  • 10
  • 49
  • 81