Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.newusers
Paula_p
 
Posts: n/a
Default How do i generate a bill from an inventory list?

Hi everyone,
I have an invoice as one sheet and an inventory list as another sheet in the
same workbook. I would like to be able to select items from the inventory
list and have that info. (about 3 columns from 8) sent directly to the
invoice in order to generate a bill, however, the items are not necessarily
consecutive in the list. Is there a way to do this?
Thanks for any help!!
  #2   Report Post  
Posted to microsoft.public.excel.newusers
Miguel Zapico
 
Posts: n/a
Default How do i generate a bill from an inventory list?

Search the help for the VLOOKUP function, that may be useful in this case.
It also have a parameter to perform the lookup on non sorted lists.

Hope this helps,
Miguel.

"Paula_p" wrote:

Hi everyone,
I have an invoice as one sheet and an inventory list as another sheet in the
same workbook. I would like to be able to select items from the inventory
list and have that info. (about 3 columns from 8) sent directly to the
invoice in order to generate a bill, however, the items are not necessarily
consecutive in the list. Is there a way to do this?
Thanks for any help!!

  #3   Report Post  
Posted to microsoft.public.excel.newusers
Paula_p
 
Posts: n/a
Default How do i generate a bill from an inventory list?

Thank you, i found the vlookup formula and it is working very well, all i
need to do is type the product code from the inventory list in the invoice
sheet and the info. i need automatically upload itself. However, in using the
vlookup, if data is only present in the first few cells, the remaining ones
return a #value error. I found a way to correct this to return an empty
cells in the unit price column with the following:
=IF(ISNA(VLOOKUP(B21,Inventory!$B$3:$D$2000,3,FALS E)),"",VLOOKUP(B21,Inventory!$B$3:$D$2000,3,FALSE) ).
My problem now is this, "sales tax on purchase" uses the sum product formula;
=sumproduct((a16:a32)*(d16:d32)*(e16:e32)), where column a has product
quantity, column d has unit price and column e has tax amount (which may or
may not apply). Howevwer, this generates a #value error after entering the
vlookup formula. I've tried to correct this with the following;
=if((d16:d32)="",0,sumproduct((a16:a32)*(d16:d32)* (e16:e32))), but i still
get a #value error. Can someone please tell me what i'm doing wrong.
Thanks.
Qty Code Description Unit price Tax
Total
3 2485 pencil $10
$30
5 0014 novel $15
2% $ 75


subtotal $105
sales tax on
purchase $1.50

total $106.50


"Miguel Zapico" wrote:

Search the help for the VLOOKUP function, that may be useful in this case.
It also have a parameter to perform the lookup on non sorted lists.

Hope this helps,
Miguel.

"Paula_p" wrote:

Hi everyone,
I have an invoice as one sheet and an inventory list as another sheet in the
same workbook. I would like to be able to select items from the inventory
list and have that info. (about 3 columns from 8) sent directly to the
invoice in order to generate a bill, however, the items are not necessarily
consecutive in the list. Is there a way to do this?
Thanks for any help!!

  #4   Report Post  
Posted to microsoft.public.excel.newusers
Miguel Zapico
 
Posts: n/a
Default How do i generate a bill from an inventory list?

The SUMPRODUCT function doesn't need to have the product operator between the
arrays, try with
=SUMPRODUCT((A16:A32),(D16:D32),(E16:E32))

Miguel.

"Paula_p" wrote:

Thank you, i found the vlookup formula and it is working very well, all i
need to do is type the product code from the inventory list in the invoice
sheet and the info. i need automatically upload itself. However, in using the
vlookup, if data is only present in the first few cells, the remaining ones
return a #value error. I found a way to correct this to return an empty
cells in the unit price column with the following:
=IF(ISNA(VLOOKUP(B21,Inventory!$B$3:$D$2000,3,FALS E)),"",VLOOKUP(B21,Inventory!$B$3:$D$2000,3,FALSE) ).
My problem now is this, "sales tax on purchase" uses the sum product formula;
=sumproduct((a16:a32)*(d16:d32)*(e16:e32)), where column a has product
quantity, column d has unit price and column e has tax amount (which may or
may not apply). Howevwer, this generates a #value error after entering the
vlookup formula. I've tried to correct this with the following;
=if((d16:d32)="",0,sumproduct((a16:a32)*(d16:d32)* (e16:e32))), but i still
get a #value error. Can someone please tell me what i'm doing wrong.
Thanks.
Qty Code Description Unit price Tax
Total
3 2485 pencil $10
$30
5 0014 novel $15
2% $ 75


subtotal $105
sales tax on
purchase $1.50

total $106.50


"Miguel Zapico" wrote:

Search the help for the VLOOKUP function, that may be useful in this case.
It also have a parameter to perform the lookup on non sorted lists.

Hope this helps,
Miguel.

"Paula_p" wrote:

Hi everyone,
I have an invoice as one sheet and an inventory list as another sheet in the
same workbook. I would like to be able to select items from the inventory
list and have that info. (about 3 columns from 8) sent directly to the
invoice in order to generate a bill, however, the items are not necessarily
consecutive in the list. Is there a way to do this?
Thanks for any help!!

  #5   Report Post  
Posted to microsoft.public.excel.newusers
Paula_p
 
Posts: n/a
Default How do i generate a bill from an inventory list?

Thank you Miguel, everything in my invoice sheet works fine now.
In the inventory list where i store all my product information, including
quantity in stock, how do i get the quantity entered in the invoice to be
deducted from the current quantity on hand, and show the new figure. Say on
hand i have 10 pencils, and on the invoice i sold 3, is there a way to
automatically have the new quantity on hand updated in the inventory list?

"Miguel Zapico" wrote:

The SUMPRODUCT function doesn't need to have the product operator between the
arrays, try with
=SUMPRODUCT((A16:A32),(D16:D32),(E16:E32))

Miguel.

"Paula_p" wrote:

Thank you, i found the vlookup formula and it is working very well, all i
need to do is type the product code from the inventory list in the invoice
sheet and the info. i need automatically upload itself. However, in using the
vlookup, if data is only present in the first few cells, the remaining ones
return a #value error. I found a way to correct this to return an empty
cells in the unit price column with the following:
=IF(ISNA(VLOOKUP(B21,Inventory!$B$3:$D$2000,3,FALS E)),"",VLOOKUP(B21,Inventory!$B$3:$D$2000,3,FALSE) ).
My problem now is this, "sales tax on purchase" uses the sum product formula;
=sumproduct((a16:a32)*(d16:d32)*(e16:e32)), where column a has product
quantity, column d has unit price and column e has tax amount (which may or
may not apply). Howevwer, this generates a #value error after entering the
vlookup formula. I've tried to correct this with the following;
=if((d16:d32)="",0,sumproduct((a16:a32)*(d16:d32)* (e16:e32))), but i still
get a #value error. Can someone please tell me what i'm doing wrong.
Thanks.
Qty Code Description Unit price Tax
Total
3 2485 pencil $10
$30
5 0014 novel $15
2% $ 75


subtotal $105
sales tax on
purchase $1.50

total $106.50


"Miguel Zapico" wrote:

Search the help for the VLOOKUP function, that may be useful in this case.
It also have a parameter to perform the lookup on non sorted lists.

Hope this helps,
Miguel.

"Paula_p" wrote:

Hi everyone,
I have an invoice as one sheet and an inventory list as another sheet in the
same workbook. I would like to be able to select items from the inventory
list and have that info. (about 3 columns from 8) sent directly to the
invoice in order to generate a bill, however, the items are not necessarily
consecutive in the list. Is there a way to do this?
Thanks for any help!!



  #6   Report Post  
Posted to microsoft.public.excel.newusers
Mel Mel is offline
external usenet poster
 
Posts: 74
Default How do i generate a bill from an inventory list?

hey i think that i need something like this do you think you can email me
yours just to see if mine would work?

"Paula_p" wrote:

Hi everyone,
I have an invoice as one sheet and an inventory list as another sheet in the
same workbook. I would like to be able to select items from the inventory
list and have that info. (about 3 columns from 8) sent directly to the
invoice in order to generate a bill, however, the items are not necessarily
consecutive in the list. Is there a way to do this?
Thanks for any help!!

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Filterered list to new worksheet rudawg Excel Worksheet Functions 1 January 30th 06 03:29 PM
How to generate a random list of weekDAYS between two dates? Yanzel Muniz Excel Worksheet Functions 1 September 22nd 05 12:45 AM
How list inventory item codes so that they will be sorted correctl I need to sort the items by their item Excel Discussion (Misc queries) 0 August 24th 05 06:36 PM
Add new inventory list to existing list jweasl Excel Discussion (Misc queries) 1 June 11th 05 07:34 PM
Add new inventory list to existing list jweasl Excel Worksheet Functions 1 June 11th 05 03:54 AM


All times are GMT +1. The time now is 04:23 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"