Functions Help!

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Is there a function that will allow me to count a number in one column if
given a critera for a different column? For Example: If you had a spreadsheet
of products sold for September with columns labeled-Column A: Product -
Column B: Quanity - Column C: Date - Column D: Model - Column E: Amount, etc.
Could you count the Quanity in Column B only if a specific Model Name is
given in Column D
(EX: Soda Pop _ 4 _ 9-23-04 _ Pepsi _ $.75) I may have Soda Pop list 10
times in one spread sheet but I only want to count Pepsi quanties.
 
=SUMPRODUCT(--(ProductRange=G2),--(DateRange=H2),--(ModelRange=I2),QuantityRange)

where G2 houses a product condition, H2 a date condition, I2 a model
condition.

I assumed that you wanted to conditionally sum the Quantity range.
 
=sumif(D1:D100,"Pepsi",B1:B100)


Is there a function that will allow me to count a number in one colum
if
given a critera for a different column? For Example: If you had
spreadsheet
of products sold for September with columns labeled-Column A: Produc
-
Column B: Quanity - Column C: Date - Column D: Model - Column E
Amount, etc.
Could you count the Quanity in Column B only if a specific Model Nam
is
given in Column D
(EX: Soda Pop _ 4 _ 9-23-04 _ Pepsi _ $.75) I may have Soda Pop lis
10
times in one spread sheet but I only want to count Pepsi quanties
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top