Creating an invoice from other worksheets

G

Guest

I have created a worksheet that allows me to enter a number and then
calculates the price based upon the items chosen. I am trying to create a
customer invoice from this worksheet. It needs to pull the info only if the
value is greater than 0. There are four separate cells for each line of the
worksheet.

Can you help?
 
G

Guest

jodster said:
I have created a worksheet that allows me to enter a number and then
calculates the price based upon the items chosen. I am trying to create a
customer invoice from this worksheet. It needs to pull the info only if the
value is greater than 0. There are four separate cells for each line of the
worksheet.
.. It needs to pull the info only if the value is greater than 0.

One way to cater for the above line is to use something like:
=IF(OR(B2="",B2=0),"",VLOOKUP(B2, ...))
where B2 is the input cell

For VLOOKUP and INDEX/MATCH usage & examples
try Debra Dalgleish's pages at:
http://www.contextures.com/xlFunctions02.html
http://www.contextures.com/xlFunctions03.html

Maybe try also Debra's sample files at:
http://www.contextures.com/excelfiles.html
Look for "Purchase Order"

---
 

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