Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3
Default Running totals on Purchase Order tracking

I have created a workbook template where I have a 'master' page for an Order
Acknowledgment/Confirmation for a Purchase Order for items that are purchased
from one vendor and are waiting to be received. On separate sheets, I have
created a similar template to receive the items purchased on multiple
Purchase Orders for that one original Purchase Order due to backorders. This
is simply for tracking everything on the Original Purchase to insure that all
inventory is accounted for without all the confusion and paper trail. What I
am wanting to do is have a running total of backordered items for each item
ordered on the mater page as new purchase orders for backorderes are entered
for that particular Original Purchase Order.

If someone could let me know how this is done, I would greatly appreciate it
and it would save me a lot of HEADACHE!! I think that I am on the right track
and I am close-if all else fails, I could always enter the info manually, but
I think that might open the door for more error...I know that it can be done!!

Thanks in advance for the answer!!
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3,365
Default Running totals on Purchase Order tracking

Look into using either VLOOKUP() or SUMPRODUCT() to come up with the total of
received items on multiple sheets. VLOOKUP() should work if the original
item is only referenced once on any given sheet, but if you have same product
item referenced more than once on the receiving records sheets, then you'd
need to use SUMPRODUCT() to roll them all up.

I'll try to give quick, short example. Lets say on the Master sheet you
have an item that has the unique item number (stock number, order line item
number, what ever) in column A2 and the total quantity is in D2.

Over in a sheet we'll call Status, you'd start with the original values via
formula, so in a row (we'll use different row to help keep things separated)
you put a couple of formulas:
In Status!A4 we put =Master!A2
in Status!B4 we put =Master!D2

The receiving sheets have the same reference to the stock/order/ID number in
column A beginning at row 2 and continuing down the sheet, with the number of
items received in column C. These sheets are named like RECV1, RECV2, etc.

Back to our Status sheet, in a column to roll up all quantities of the item
that have been recorded as received, you'd put a formula like this (using
SUMPRODUCT() since it will work under both circumstances) into cell C4
=SUMPRODUCT(--(RECV1!A1:A65536=STATUS!A4),--(RECV1!C1:C65536)) +
SUMPRODUCT(--(RECV2!A1:A65536=STATUS!A4),--(RECV2!C1:C65536))
that will give you a total of all of the particular items shown as received
on sheets RECV1 and RECV2, so if we put this formula into STATUS!D4
=C4-B4
we get the number still on back order.

You don't have to reference all the way down to row 65536 as I've done, you
can put the upper row limit at a known row number that includes all entries
on the RECV# sheets to make it more efficient, but by using 65536, you don't
have to adjust the formulas at all.

Hope this helps some.

"klat7292" wrote:

I have created a workbook template where I have a 'master' page for an Order
Acknowledgment/Confirmation for a Purchase Order for items that are purchased
from one vendor and are waiting to be received. On separate sheets, I have
created a similar template to receive the items purchased on multiple
Purchase Orders for that one original Purchase Order due to backorders. This
is simply for tracking everything on the Original Purchase to insure that all
inventory is accounted for without all the confusion and paper trail. What I
am wanting to do is have a running total of backordered items for each item
ordered on the mater page as new purchase orders for backorderes are entered
for that particular Original Purchase Order.

If someone could let me know how this is done, I would greatly appreciate it
and it would save me a lot of HEADACHE!! I think that I am on the right track
and I am close-if all else fails, I could always enter the info manually, but
I think that might open the door for more error...I know that it can be done!!

Thanks in advance for the answer!!

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
Project Purchase & budget tracking tool Chuck[_3_] Excel Worksheet Functions 0 November 1st 07 10:14 PM
Purchase order... Bossgobbler Excel Worksheet Functions 3 May 19th 06 10:02 PM
Purchase order dee Excel Discussion (Misc queries) 2 October 25th 05 01:39 AM
purchase order counter in excel purchase order template Brandy@baoco Excel Worksheet Functions 0 February 23rd 05 06:17 PM
I want a purchase order that includes page number (if to be order. Angela New Users to Excel 1 December 3rd 04 04:39 PM


All times are GMT +1. The time now is 11:39 AM.

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

About Us

"It's about Microsoft Excel"