"Kim Shelton at PDC" <Kim Shelton at
(E-Mail Removed)> wrote in
message news:BDF29B62-D234-4296-8C65-(E-Mail Removed)...
> 1. Countif with multiple criteria. I have tried sumproduct as follows...
> =SUMPRODUCT(('Jan 06'!A:A="B")*('Jan 06'!G:G="TRUE"))
> but this gives me a result as #NUM!
> The cell is set to general.
> What I am counting is in column A tell me how many cells have "b" and how
> many cells also have "true" in G column. I only want to count the cells
that
> have both.
Note that SUMPRODUCT doesn't work with complete columns, you have to specify
a range.
> 2. Sumif with multiple criteria. I have tried several things and can't
get
> anything to work. It is three conditions. If column A = B and Column G =
> True then sum colmn H. Column H will have $ in it.
>
> I really need this in 1 formula if possible because I have so many of
these
> formulas per month to do.
SUMIF doesn't work with multiple criteria, you need SUMPRODUCT here.