About Fuctions

  • Thread starter Excel Worksheet Functions
  • Start date
E

Excel Worksheet Functions

I am trying to function on excel about,
Sheet1
Item Price

Sheet2
Product Name Quantity Unit cost

Product Name (Combo Box) list of Item From Sheet1 Items. What i will like to
do is, when i choose under Product Name any item from Sheet1, Unit Cost is
calculating automatically From Sheet1 Item Price times Quantity.

Thank you very much for your help....
 
M

Max

To pull-out the price in Sheet2's col C based on item selected in A2,
you could use in C2: =IF(A2="",0,VLOOKUP(A2,Sheet1!A:B,2,0))
assuming source table is contained in Sheet1's cols A and B

Just multiply the above by the quantity in col B
if you want to calc the "Total Cost" instead:
=IF(A2="",0,VLOOKUP(A2,Sheet1!A:B,2,0)*B2)
 

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