Conditional SUM

V

Vince

I am trying to work up an estimate for purchasing several items.

I have the following data listed within columns:

LIST PRICE (in a column of all possible items that might be
purchased);
DISCOUNT FACTOR (percentage of LIST PRICE for two stores
within a cell, for reference to); and,
QTY (quatity to purchase).

What formula should I use (Excel97) to calculate the following, in
English:

IF value in QTY is greater than 0, THEN return the product of QTY by
DISCOUNT FACTOR by LIST PRICE.
 
B

Bob Phillips

=IF(qty>0,qty*discount_factor*list_price,0)

--

HTH

RP
(remove nothere from the email address if mailing direct)
 

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

Top