Cost times amount (if populated)

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

Guest

Column A is the number of shirts ordered.
Column G is the name to be printed on the shirt(s)...(if wanted).
Column H is the total cost to print the name(s) if wanted (@ $6.00 each).

How do I get the cost (Column H) to fill in based on if there is anything in
Column G (left blank for no name and if a name is wanted, type in the name)
and multiply by the quantity (Column A) for a total in Column H?
 
=IF(G2="",0,A2*6)

--
HTH

Bob Phillips

(remove nothere from email address if mailing direct)
 
Brian, I am not sure exactly what you are trying to do. If column H
lists the price and you want the total dollar amount to appear in I
then in I type the following
=IF(A1=0,"",A1*H1)

If ALL the shirts are 6 you can simply do this in H
=IF(A1=0,"",A1*6)

Does this help?
 

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

Similar Threads

filtering subtotals and if functions 2
Elseif? 5
Help needed 0
Calculating Cost Per Minute 5
SUM - IF - AND 7
Need VLOOKUP to Work Two Ways 0
tier pricing 2
multiple calculations in 1 cell 1

Back
Top