Hi all,
I am having troubles to count and array. It has only 1 criteria, but the range to count is big. I think it will be best if I show you an example:
<tbody>
</tbody>
This table represents how many times a customer has been contacted during a specific week. So, for example, in week 1 I contacted 2 customers (Customer 1 and Customer 3). Next week I want to know how many NEW customers I have contacted (Customer 2). On week 3 I will need to count Customers I have not contacted on week 1 nor week 2 (Customer 4) and so on.
The actual list of Customer is very big, and I have come with this formula that works OK for comparing if the previous week I have contated or not.
{SUM(ISBLANK($AE$4:$AE$116)*(AF4:AF116>0))} where AE4:AE116 is week 1 and AF4:AF116 is week 2.
Since I have to repeat this for every week, I can keep nesting the ISBLANK inside the formula, but doing it 52 times is going to be mad.
I have tried setting a broader range for the ISBLANK part, but this will not work propperly.
So, at the end, I will need to see in week 14 the count of customers that have not been contacted in the 13 weeks before.
Hope this make sense.
Thanks very much
Kind regards,
Jordi
I am having troubles to count and array. It has only 1 criteria, but the range to count is big. I think it will be best if I show you an example:
Customer/Week | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 12 | 14 |
Customer 1 | 1 | 3 | 4 | 9 | 12 | 17 | 5 | 1 | ||||||
Customer 2 | 5 | 1 | 6 | 7 | 10 | 1 | 3 | 4 | ||||||
Customer 3 | 2 | 1 | 5 | 7 | 8 | 15 | 4 | 8 | 1 | |||||
Customer 4 | 7 | 8 | 1 | 9 | 1 | 5 | 8 | 1 |
<tbody>
</tbody>
This table represents how many times a customer has been contacted during a specific week. So, for example, in week 1 I contacted 2 customers (Customer 1 and Customer 3). Next week I want to know how many NEW customers I have contacted (Customer 2). On week 3 I will need to count Customers I have not contacted on week 1 nor week 2 (Customer 4) and so on.
The actual list of Customer is very big, and I have come with this formula that works OK for comparing if the previous week I have contated or not.
{SUM(ISBLANK($AE$4:$AE$116)*(AF4:AF116>0))} where AE4:AE116 is week 1 and AF4:AF116 is week 2.
Since I have to repeat this for every week, I can keep nesting the ISBLANK inside the formula, but doing it 52 times is going to be mad.
I have tried setting a broader range for the ISBLANK part, but this will not work propperly.
So, at the end, I will need to see in week 14 the count of customers that have not been contacted in the 13 weeks before.
Hope this make sense.
Thanks very much
Kind regards,
Jordi