I did get responses to my question yesterday that I'm just getting ready to try. First, I needed to check one column and then sum data, so SUMIF worked great. Then I needed to check data in 2 columns and if they were both = to my criteria then sum data. I assumed that I would still use SUMIF along with an "and" statement or something to that effect. I tried "help" and many different variations of formulas, but couldn't make it work. Assuming the responses I got work, then I don't know how I was supposed to come up with those answers. Is it just time and experience? Here was my example
Total OBJ Tax
21875463.89 Bal Tax
12765846.19 Bal Tax
11922258.7 Fix Tax
10424317.12 Bal Non
7688947.39 Fix Tax
6803845.67 Bal Non
Responses were:=SUMPRODUCT((Total)*(OBJ="Bal")*(Tax="Tax"))
Or use an array
=SUM(IF(B1:B6=OBJ,IF(C1:C6=Tax,A1:A6,""),""))
Enter the formula and press ctrl+shift+enter to get:
{=SUM(IF(B1:B6=OBJ,IF(C1:C6=Tax,A1:A6,""),""))}