Try:
=Sumproduct((August!E1:E65535="DEN")*(August!$AU1:$AW65535="Access Process"))
It's a subtle difference.
This version that you tried
=Sumproduct(--(August!E1:E65535="DEN"), --(August!$AU1:$AW65535="Access
Process"))
is a good attempt, but it has two arguments which the sumproduct function
will try to multiply together and add up the results. the problem is
sumproduct likes its arguments to be the same dimensions, which these are not
(first argument is one column and the second argument is three columns). but
you should be able to get around it by explicitly multiplying the arrays
(ranges) together yourself before sumproduct gets its hands on it. the
result of your multiplication gets passed to sumproduct and it should happily
add it up (no multiplication necessary on the part of the sumproduct function
because only one array gets passed to it).
basically, it's a two step process. multiplying the two arrays together and
adding up the results. sumproduct is capable of doing both steps if the
arrays are the same dimensions. if not, you have to do the multiplication
and let sumproduct do the addition only.