Quote (o2j @ Dec 10 2013 10:58pm)
Just a simple question guys, I can seem to figure it out.
In excel.
I have 2 different columns, Column A with numbers ex. 1,20,45 etc. and Column B with words, adhesive, abrasive etc. Each row is independent.
I'm trying to count Columns A only if they have a "1" only if column B has "adhesive"
any ideas? I have tried countif, if, sumproduct and I could not get it.
If you're trying to count the number of records you have that meet a criteria in column A (1) AND a criteria in column B ("Adhesive") you could use
countifsCode
=COUNTIFS(A1:A5, 1, B1:B5, "Adhesive")