Do you really need each item on a separate sheet? You could use an
AutoFilter and a Subtotal formula to display individual items and their
totals.
To create a summary of the master list in another workbook, you could
create a pivot table. There are instructions in Excel's help, and here:
http://www.contextures.com/xlPivot01.html
> Could some kind person assist with this?
>
[quoted text clipped - 18 lines]
>
> Your help or ideas is appreciated greatly.

Signature
Debra Dalgleish
Excel FAQ, Tips & Book List
http://www.contextures.com/tiptech.html
yetti - 23 Jan 2006 06:35 GMT
Thank you for your assistance Debra I will check out your link and work
through all that is contained on a very good and well presented site.
As a learner looks to be invaluable as I am trying to "self teach". I will
try to learn the Pivot approach........For sake of inquisitiveness.Though
code would be nice too in order I understand how to record macro's but where
data varies by row or column or work book sheets varies It would be nice to
insert an "all embracing code" a kind person called Bob Philips already gave
me some for finding the last row
iLastRow = Cells(Rows.Count,"A").End(xlUp).Row
Cells(iLastRow+1,"A") = ... your sum formula
I was after something for worksheets as well
Once again your prompt assistance is really appreciated
> Do you really need each item on a separate sheet? You could use an
> AutoFilter and a Subtotal formula to display individual items and their
[quoted text clipped - 27 lines]
>>
>> Your help or ideas is appreciated greatly.
Bob Phillips - 23 Jan 2006 09:17 GMT
Yetti,
If you want to process all the sheets, you could use something like
For Each sh In Activeworkbook.Worksheets
'then sh points at the next worksheet
If sh.Name = "Summary" Then
'you don't want to process Summary inj this loop
... now do your stuff
End If
Next sh
--
HTH
Bob Phillips
(remove nothere from the email address if mailing direct)
> Thank you for your assistance Debra I will check out your link and work
> through all that is contained on a very good and well presented site.
[quoted text clipped - 47 lines]
> > Excel FAQ, Tips & Book List
> > http://www.contextures.com/tiptech.html
Debra,
Looks like your book due in March is going to be an invaluable read and work
of reference if your site is anything to go by.
Good effort.
> Could some kind person assist with this?
>
[quoted text clipped - 18 lines]
>
> Your help or ideas is appreciated greatly.
Bob Phillips - 23 Jan 2006 09:15 GMT
It will be. Debra is an authority on the subject.
--
HTH
Bob Phillips
(remove nothere from the email address if mailing direct)
> Debra,
> Looks like your book due in March is going to be an invaluable read and work
[quoted text clipped - 22 lines]
> >
> > Your help or ideas is appreciated greatly.
yetti - 23 Jan 2006 09:54 GMT
Bob and Debra.............Many Thanks.......Hope I learn enough fairly soon
to assist others but I fear it is a long road yet.......or should I say
yetti.
Best regards
> It will be. Debra is an authority on the subject.
>
[quoted text clipped - 38 lines]
>> >
>> > Your help or ideas is appreciated greatly.