English Deutsch Français Italiano Español Português 繁體中文 Bahasa Indonesia Tiếng Việt ภาษาไทย
All categories

"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

3 answers

=SUMPRODUCT((A1:A4="BB Sales Cycle")*(B1:B4="A")*(C1:C4))

2006-11-06 12:50:21 · answer #1 · answered by O Caçador 6 · 0 0

You can put your BB sales and your MM sales in 2 seperate columns....or you can do something like this:
=(c1+c2+c3+c4-c3)
....If I'm understanding correctly...you could try to click on the help menu un excel under formulas.......sorry I can't be more help...not sure I completely understand your question.

2006-11-06 13:28:44 · answer #2 · answered by Shelly B 5 · 0 1

I don't think that you can directly do that..
Add a new column (D for example) that equals to =A&B,
so that you can later on do something like
=SUMIF(D2:D5,"BB Sales Cycle"&"B",C2:C5)

You can hide that column D after if you don't want around.

Hope that helps.

2006-11-06 13:41:42 · answer #3 · answered by AMTV 3 · 0 0

fedest.com, questions and answers