PC Review


Reply
Thread Tools Rate Thread

counting like items on one sheet, showing totals on another sheet

 
 
=?Utf-8?B?UlBX?=
Guest
Posts: n/a
 
      6th Oct 2006
Sorry if this has been answered, I looked at 342 different questions, did not
find one like mine.

Within a workbook, I have 6 sheets. I have an inventory sheet listing all
product by item number and description, ex: "80036" in a1, "36 inch box" in
b1, "80046" in a2, "46 inch box" in b2, etc.. A total of 1200 lines of
different items and descriptions. Then I have 4 quote sheets. Some rows for
each sheet use "VLOOKUP", so if the item number from the inventory sheet is
typed in appropriate col., description from inventory sheet is returned in
next col.. OK, next I have a sheet that is my picking ticket. On this sheet
I want a total by row of each item listed on the 4 quote sheets, so it shows
how many of the same item were listed on the 4 quote sheets. So if "80036"
is on quote sheet one with a value of 4, and on quote sheet two with a value
of 3, my picking tix would show that item number and description with a value
of 7 in the appropriate col.. Not all items will always be listed on quote
sheets. How do I set up the rows on picking tix to look for an item number
on the four quote sheets,and if not found, go to the next item number, once
an
item number is found, sum the total number listed for the found item number,
then on the next row, do the same thing without duplicating what has already
been found, until all 1200 items have been searched for? I think I am asking
too much..........TIA for any and all help.

 
Reply With Quote
 
 
 
 
=?Utf-8?B?VG9tIE9naWx2eQ==?=
Guest
Posts: n/a
 
      6th Oct 2006
Assuming you have all 1200 items listed on the PICKING Ticket sheet with the
item numbers in column A then
(assume quote sheets have item number in column B and quantities in D with
sheet names qsheet1, qsheet2, qsheet3, qsheet4:
In F2 of the picking ticket for example.
=countif(Qsheet1!B:B,A2,Qsheet1!D)+countif(Qsheet2!B:B,A2,Qsheet2!D)+countif(Qsheet3!B:B,A2,Qsheet3!D)+countif(Qsheet4!B:B,A2,Qsheet4!D)


then drag fill down the column.

when done and the numbers are returned, if you want to make them permanent,
select column F, do edit=>Copy, then Edit=>Paste special and select values to
overwrite the formulas with the values they display.

--
Regards,
Tom Ogilvy

"RPW" wrote:

> Sorry if this has been answered, I looked at 342 different questions, did not
> find one like mine.
>
> Within a workbook, I have 6 sheets. I have an inventory sheet listing all
> product by item number and description, ex: "80036" in a1, "36 inch box" in
> b1, "80046" in a2, "46 inch box" in b2, etc.. A total of 1200 lines of
> different items and descriptions. Then I have 4 quote sheets. Some rows for
> each sheet use "VLOOKUP", so if the item number from the inventory sheet is
> typed in appropriate col., description from inventory sheet is returned in
> next col.. OK, next I have a sheet that is my picking ticket. On this sheet
> I want a total by row of each item listed on the 4 quote sheets, so it shows
> how many of the same item were listed on the 4 quote sheets. So if "80036"
> is on quote sheet one with a value of 4, and on quote sheet two with a value
> of 3, my picking tix would show that item number and description with a value
> of 7 in the appropriate col.. Not all items will always be listed on quote
> sheets. How do I set up the rows on picking tix to look for an item number
> on the four quote sheets,and if not found, go to the next item number, once
> an
> item number is found, sum the total number listed for the found item number,
> then on the next row, do the same thing without duplicating what has already
> been found, until all 1200 items have been searched for? I think I am asking
> too much..........TIA for any and all help.
>

 
Reply With Quote
 
=?Utf-8?B?UlBX?=
Guest
Posts: n/a
 
      6th Oct 2006
Ok, but is that going to give me a sum total for an item, or just a total
count of how many times that item was listed on the quote sheets? Thank you
for your help.

"Tom Ogilvy" wrote:

> Assuming you have all 1200 items listed on the PICKING Ticket sheet with the
> item numbers in column A then
> (assume quote sheets have item number in column B and quantities in D with
> sheet names qsheet1, qsheet2, qsheet3, qsheet4:
> In F2 of the picking ticket for example.
> =countif(Qsheet1!B:B,A2,Qsheet1!D)+countif(Qsheet2!B:B,A2,Qsheet2!D)+countif(Qsheet3!B:B,A2,Qsheet3!D)+countif(Qsheet4!B:B,A2,Qsheet4!D)
>
>
> then drag fill down the column.
>
> when done and the numbers are returned, if you want to make them permanent,
> select column F, do edit=>Copy, then Edit=>Paste special and select values to
> overwrite the formulas with the values they display.
>
> --
> Regards,
> Tom Ogilvy
>
> "RPW" wrote:
>
> > Sorry if this has been answered, I looked at 342 different questions, did not
> > find one like mine.
> >
> > Within a workbook, I have 6 sheets. I have an inventory sheet listing all
> > product by item number and description, ex: "80036" in a1, "36 inch box" in
> > b1, "80046" in a2, "46 inch box" in b2, etc.. A total of 1200 lines of
> > different items and descriptions. Then I have 4 quote sheets. Some rows for
> > each sheet use "VLOOKUP", so if the item number from the inventory sheet is
> > typed in appropriate col., description from inventory sheet is returned in
> > next col.. OK, next I have a sheet that is my picking ticket. On this sheet
> > I want a total by row of each item listed on the 4 quote sheets, so it shows
> > how many of the same item were listed on the 4 quote sheets. So if "80036"
> > is on quote sheet one with a value of 4, and on quote sheet two with a value
> > of 3, my picking tix would show that item number and description with a value
> > of 7 in the appropriate col.. Not all items will always be listed on quote
> > sheets. How do I set up the rows on picking tix to look for an item number
> > on the four quote sheets,and if not found, go to the next item number, once
> > an
> > item number is found, sum the total number listed for the found item number,
> > then on the next row, do the same thing without duplicating what has already
> > been found, until all 1200 items have been searched for? I think I am asking
> > too much..........TIA for any and all help.
> >

 
Reply With Quote
 
=?Utf-8?B?UlBX?=
Guest
Posts: n/a
 
      6th Oct 2006
Also, if some of the totals (or rows) are zero, when I print out the picking
ticket report, how do I not print any 'zero total' items? Thanks.

"RPW" wrote:

> Ok, but is that going to give me a sum total for an item, or just a total
> count of how many times that item was listed on the quote sheets? Thank you
> for your help.
>
> "Tom Ogilvy" wrote:
>
> > Assuming you have all 1200 items listed on the PICKING Ticket sheet with the
> > item numbers in column A then
> > (assume quote sheets have item number in column B and quantities in D with
> > sheet names qsheet1, qsheet2, qsheet3, qsheet4:
> > In F2 of the picking ticket for example.
> > =countif(Qsheet1!B:B,A2,Qsheet1!D)+countif(Qsheet2!B:B,A2,Qsheet2!D)+countif(Qsheet3!B:B,A2,Qsheet3!D)+countif(Qsheet4!B:B,A2,Qsheet4!D)
> >
> >
> > then drag fill down the column.
> >
> > when done and the numbers are returned, if you want to make them permanent,
> > select column F, do edit=>Copy, then Edit=>Paste special and select values to
> > overwrite the formulas with the values they display.
> >
> > --
> > Regards,
> > Tom Ogilvy
> >
> > "RPW" wrote:
> >
> > > Sorry if this has been answered, I looked at 342 different questions, did not
> > > find one like mine.
> > >
> > > Within a workbook, I have 6 sheets. I have an inventory sheet listing all
> > > product by item number and description, ex: "80036" in a1, "36 inch box" in
> > > b1, "80046" in a2, "46 inch box" in b2, etc.. A total of 1200 lines of
> > > different items and descriptions. Then I have 4 quote sheets. Some rows for
> > > each sheet use "VLOOKUP", so if the item number from the inventory sheet is
> > > typed in appropriate col., description from inventory sheet is returned in
> > > next col.. OK, next I have a sheet that is my picking ticket. On this sheet
> > > I want a total by row of each item listed on the 4 quote sheets, so it shows
> > > how many of the same item were listed on the 4 quote sheets. So if "80036"
> > > is on quote sheet one with a value of 4, and on quote sheet two with a value
> > > of 3, my picking tix would show that item number and description with a value
> > > of 7 in the appropriate col.. Not all items will always be listed on quote
> > > sheets. How do I set up the rows on picking tix to look for an item number
> > > on the four quote sheets,and if not found, go to the next item number, once
> > > an
> > > item number is found, sum the total number listed for the found item number,
> > > then on the next row, do the same thing without duplicating what has already
> > > been found, until all 1200 items have been searched for? I think I am asking
> > > too much..........TIA for any and all help.
> > >

 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

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


Similar Threads
Thread Thread Starter Forum Replies Last Post
How to record a sheet change showing row column sheet name and date? Simon Lloyd Microsoft Excel Programming 0 6th Oct 2004 12:57 PM
How to record a sheet change showing row column sheet name and date? Simon Lloyd Microsoft Excel Programming 0 6th Oct 2004 10:32 AM
How to record a sheet change showing row column sheet name and date? Simon Lloyd Microsoft Excel Programming 0 6th Oct 2004 10:17 AM
How to record a sheet change showing row column sheet name and date? Simon Lloyd Microsoft Excel Programming 0 5th Oct 2004 12:06 PM
How to record a sheet change showing row column sheet name and date? Simon Lloyd Microsoft Excel Programming 1 5th Oct 2004 11:22 AM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 12:11 PM.