Try this
=SUMPRODUCT(--(DAY1!E6:E35<>0),--(LEFT(DAY1!G6:G35,2)<>"GI"),--(LEFT(DAY1!G6
:G35,1)<>"M"))
the problem with your test was that it tested for E <> "" and G <> GI, but
did a separate test for G <> "M" and added them, you need it all in one test

Signature
HTH
Bob Phillips
(replace somewhere in email address with gmail if mailing direct)
> Yes Bob, The Idea is to create a formula that would check if there is a
> Phone Number (E6:E35) First, and if that is true then Check for the
[quoted text clipped - 11 lines]
>
> This Returns Good Values:
=SUMPRODUCT(--('DAY1'!E6:E35<>0),--(LEFT('DAY1'!G6:G35,2)=""))+SUMPRODUCT(--
(LEFT('DAY1'!G6:G35,1)="/"))
> Phone Number Cells Not Blank, G Cells = Blank, Left Character G Cell =
> "/" These Conditions works well to return a count..
> -------------------------------------------------------------
> This Returns bad Values: (Bad meaning incorrect for the conditions
> tested)
=SUMPRODUCT(--('DAY1'!E6:E35<>0),--(LEFT('DAY1'!G6:G35,2)<>"GI"))+SUMPRODUCT
(--(LEFT('DAY1'!G6:G35,1)<>"M"))
> Phone Number Cell Not Blank, Left Function of G Cells <> "GI" or "M"
> This Formula Doesn't Return accurate Results.
>
> thanks for checking this out...
Mhz - 28 Jul 2006 06:35 GMT
That was Exactly the Problem Bob! Your Formula Works Flawless! Now I
see what I was doing wrong... Thanks Very Much :)

Signature
Mhz