Link to home
Start Free TrialLog in
Avatar of Tocogroup
TocogroupFlag for United Kingdom of Great Britain and Northern Ireland

asked on

How do I create an Excel 2003 array formula using date criteria ?

Dear All,
I have created a multiple criteria array formula to count the number of cells with a particular date in one range and a value in another range. Is there something about dates in array formulas that I should know, because it doesn't seem to recognise the criteria ?
Appreciate your help in anticipation.
Please find the worksheet attached. Date-criteria-enquiry.xls
ASKER CERTIFIED SOLUTION
Avatar of Rory Archibald
Rory Archibald
Flag of United Kingdom of Great Britain and Northern Ireland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Please try:

={COUNT(IF(B4:B15=VALUE("03/09/2010"),IF(C4:C15>100,C4:C15)))}
Sorry, typo. Should be:


{=COUNT(IF(B4:B15=VALUE("03/09/2010"),IF(C4:C15>100,C4:C15)))}
Avatar of Tocogroup

ASKER

Thanks guys. I like the non-array formula version and will start using the DATE function in my formulas in future.