=SUMPRODUCT(--(('Enrollment Log'!$F$3:$F$547<>"")+('Enrollment
Log'!$C$3:$C$547="EU")),
--(MONTH('Enrollment Log'!$J$3:$J$547)=6),
--(YEAR('Enrollment Log'!$J$3:$J$547)=2007))

Signature
---
HTH
Bob
(there's no email, no snail mail, but somewhere should be gmail in my addy)
>I have the following formula that I need to add a step too:
> =SUMPRODUCT(--('Enrollment Log'!$F$3:$F$547<>""),--(MONTH('Enrollment
[quoted text clipped - 8 lines]
>
> Thanks - Karen
Try
=SUMPRODUCT(('Enrollment Log'!$F$3:$F$547<>")+('Enrollment
Log'!$CF$3:$C$547="EU"),--(MONTH('Enrollment
Log'!$J$3:$J$547)=6),--(YEAR('Enrollment Log'!$J$3:$J$547)=2007))
We don not need the -- in first term since the + operator will convert
Boolean to numeric.
You can often use + for OR, or * for AND in formulas
Example: (TRUE, TRUE, FALSE)+(FALSE,TRUE,FALSE) becomes (1,1,0)
While (TRUE, TRUE, FALSE)*(FALSE,TRUE,FALSE) becomes (0,1,0)
best wishes

Signature
Bernard V Liengme
www.stfx.ca/people/bliengme
remove caps from email
>I have the following formula that I need to add a step too:
> =SUMPRODUCT(--('Enrollment Log'!$F$3:$F$547<>""),--(MONTH('Enrollment
[quoted text clipped - 8 lines]
>
> Thanks - Karen