I would like to count all the columns in B3;B307 that contain the text SE, and then count all the columns in F3 and F307 that are between two dates.
C12 in this case equals 1-1-03
C13 and 11-7-03
This formula works for below howver this includes all dates greater than the 1-1-03;
=SUM(IF(Ntl!B3:B307="se",IF(Ntl!F3:F307>=C12,1,0)))
Howver when i cahnge it as follows so is between tow dates ie 1-1-03, 11-7-03, it comes up with a 0 value, it appears there is a basic problem with the syntax.
=SUM(IF(Ntl!B3:B307="se",IF(Ntl!F3:F307>=C12<11-7-03,1,0)))
Any help as to why this is happening would be appreciated.
C12 in this case equals 1-1-03
C13 and 11-7-03
This formula works for below howver this includes all dates greater than the 1-1-03;
=SUM(IF(Ntl!B3:B307="se",IF(Ntl!F3:F307>=C12,1,0)))
Howver when i cahnge it as follows so is between tow dates ie 1-1-03, 11-7-03, it comes up with a 0 value, it appears there is a basic problem with the syntax.
=SUM(IF(Ntl!B3:B307="se",IF(Ntl!F3:F307>=C12<11-7-03,1,0)))
Any help as to why this is happening would be appreciated.