"I'm missing a piece of the puzzle here and I can't get the formula to work.
I have sales opportunity data and I'm trying to get it to add up the dollar amounts if column A equals "BB sales cycle" and Column B equals "A". It's not working and I'm getting a NUM error. Here's a sample of the data...
COLUMN A COLUMN B COLUMN C
BB Sales Cycle A $105,000
BB Sales Cycle B $100,000
MM Sales Cycle B $98,000
BB Sales Cycle A $100,000
The result should be $205,000. Can anyone help with the formula? Sorry I can't get the question to show in columns of any kind - the data is smooshed.
2006-11-06
05:17:50
·
3 answers
·
asked by
Stella Bing
3
in
Computers & Internet
➔ Software
I'm looking for a COUNTIF, SUMIF, etc. formula. I have about 8,000 rows of data. It would be similar to the following formula, except this would only count:
=SUM(IF((A:A="BB Sales Cycle)*(B:B="A"),1))
That formula will count the number of occurences of that array of data. The result for the data sample with this formula would be 2. But I want to count the dollars in the third column.
2006-11-06
05:37:29 ·
update #1
The formula ended up being as follows:
=SUM((A1:A4="BB Cycle")*(B1:B4="A")*(C1:C4)
CRTL+SHIFT+ENTER
2006-11-08
15:08:47 ·
update #2