Essentially, I am trying to count the number of "first time customers" every month. I have a list of customers and for every month, it lists how much they ordered. There will be a "0" up until their first month they order, when it will then have a value greater than 1. So in my list of customers, I want to count the number of customers that have ordered a case in that month, but never in a previous month. This means that I have the following formulas:
June 2015 (appearing in column C): =COUNTIFS(C22:C1002, ">0",A22:A1002,"Customer")
July 2015 (appearing in column D): =COUNTIFS(D22:D1002, ">0", C22:C1002, "=0",A22:A1002,"Customer")
August 2015 (appearing in column E): =COUNTIFS(E22:E1002, ">0", D22:D1002, "=0", C22:C1002, "=0", A22:A1002,"Customer")
I have to manually add in the additional conditions for each month - I can drag the formula across, but it does not aggregate the columns, it only keeps the set size for a different time frame. I've tried doing the following, which also did not work:
August 2015 (appearing in column E): =COUNTIFS(C22:E1002, ">0", A22:A1002, "Customer").
Any help would be greatly appreciated!!
June 2015 (appearing in column C): =COUNTIFS(C22:C1002, ">0",A22:A1002,"Customer")
July 2015 (appearing in column D): =COUNTIFS(D22:D1002, ">0", C22:C1002, "=0",A22:A1002,"Customer")
August 2015 (appearing in column E): =COUNTIFS(E22:E1002, ">0", D22:D1002, "=0", C22:C1002, "=0", A22:A1002,"Customer")
I have to manually add in the additional conditions for each month - I can drag the formula across, but it does not aggregate the columns, it only keeps the set size for a different time frame. I've tried doing the following, which also did not work:
August 2015 (appearing in column E): =COUNTIFS(C22:E1002, ">0", A22:A1002, "Customer").
Any help would be greatly appreciated!!