Hello!
Would like some suggestions please.
I need a mechanism to count rows based on several kinds of filters -
Every row represents one test I do in my labs.
There are several columns that represent the following:
Test serial number(number), date(date), name(string), lab name(string), result(number), test type(dropdown list), and several more of this kind.
This makes data entry easy.
Eventually I want to be able to count my tests based on filters I apply. For example, if I wanted to count every test that was done between 01/01/07 and 14/01/07 I can just type in the range and have it filter the counting.
The kind of filtering I need can even be complex, say a date range AND name AND result, sometimes downright random selection of filters.
My current mechanism is basically put array functions into cells along this line:
Code:
{=SUM( (B2:B40000 >= begindate)*(B2:B40000 < enddate)*... )}
and keep multiplying by more filters as needed.
This mechanism had me create many array functions to be put in cells to have a clear page of statistics to print out, which means things got very slow to update, and very hard to manage.
So please, if anyone knows of a better way to deal with such a task I'd love to hear!
Thanks,
Ronh