PC Review


Reply
Thread Tools Rate Thread

automatic summary page

 
 
=?Utf-8?B?QW5pdGE=?=
Guest
Posts: n/a
 
      23rd Jun 2007
I have a two page order sheet . You can fill in quantities ordered for each
item. I want a summary order that only populates the lines ordered into a
summary sheet. Is this possible to program in excel? If so, how?
--
Anita
 
Reply With Quote
 
 
 
 
=?Utf-8?B?VG9wcGVycw==?=
Guest
Posts: n/a
 
      23rd Jun 2007
Use this as a model, placed in your Summary sheet:

It checks if the value in Sheet1 (Order sheet) , column A is > 0 (e.g.
Quantities) and the answer is true, copies the data in the INDEX range on
Sheet1 - in this case quantities - to your summary sheet.

If you are copying contiguous columns from the Order sheet, you can copy the
formula across for the required number of columns and the INDEX range will
change from A to B etc and then down for as many rows as required (until
blank line).

=IF(ISERROR(SMALL(IF(Sheet1!$A$1:$A$20>0,ROW(Sheet1!$A$1:$A$20),""),ROW($A1))),"",INDEX(Sheet1!A$1:A$20,N(SMALL(IF(Sheet1!$A$1:$A$20>0,ROW(Sheet1!$A$1:$A$20),""),ROW($A1)))))

Change ranges to suit

HTH

"Anita" wrote:

> I have a two page order sheet . You can fill in quantities ordered for each
> item. I want a summary order that only populates the lines ordered into a
> summary sheet. Is this possible to program in excel? If so, how?
> --
> Anita

 
Reply With Quote
 
=?Utf-8?B?QW5pdGE=?=
Guest
Posts: n/a
 
      23rd Jun 2007
Thank you. Unless I am using this incorrectly, it will return a value in one
cell in the same reference area on the summary sheet. I would basically like
to fill in the same order sheet into a summary that only populates the lines
that have a been ordered. So if I had 40 lines of widgets on a spreadsheet
two pages long, and a customer enters QTy 1 on line two to order widget 2,
and enters QTY 3 on line 39 to order Widget 39, then only those two rows -
the complete row- will poulate on the summary page.
--
Anita


"Toppers" wrote:

> Use this as a model, placed in your Summary sheet:
>
> It checks if the value in Sheet1 (Order sheet) , column A is > 0 (e.g.
> Quantities) and the answer is true, copies the data in the INDEX range on
> Sheet1 - in this case quantities - to your summary sheet.
>
> If you are copying contiguous columns from the Order sheet, you can copy the
> formula across for the required number of columns and the INDEX range will
> change from A to B etc and then down for as many rows as required (until
> blank line).
>
> =IF(ISERROR(SMALL(IF(Sheet1!$A$1:$A$20>0,ROW(Sheet1!$A$1:$A$20),""),ROW($A1))),"",INDEX(Sheet1!A$1:A$20,N(SMALL(IF(Sheet1!$A$1:$A$20>0,ROW(Sheet1!$A$1:$A$20),""),ROW($A1)))))
>
> Change ranges to suit
>
> HTH
>
> "Anita" wrote:
>
> > I have a two page order sheet . You can fill in quantities ordered for each
> > item. I want a summary order that only populates the lines ordered into a
> > summary sheet. Is this possible to program in excel? If so, how?
> > --
> > Anita

 
Reply With Quote
 
=?Utf-8?B?VG9wcGVycw==?=
Guest
Posts: n/a
 
      23rd Jun 2007
If you check your quantity field (> 0?) then it will return data only for
those rows which met this condition. The formula only returns the value of
cell in the INDEX range (into the cell in which the formula exits). If you
need to return several columns of data, the INDEX range needs to reflect the
ranges (columns) in your ORDER w/sheet.

If you want send a sample w/book to:

toppers <at> NOSPAMjohntopley.fsnet.co.uk

remove NOSPAM

HTH

"Anita" wrote:

> Thank you. Unless I am using this incorrectly, it will return a value in one
> cell in the same reference area on the summary sheet. I would basically like
> to fill in the same order sheet into a summary that only populates the lines
> that have a been ordered. So if I had 40 lines of widgets on a spreadsheet
> two pages long, and a customer enters QTy 1 on line two to order widget 2,
> and enters QTY 3 on line 39 to order Widget 39, then only those two rows -
> the complete row- will poulate on the summary page.
> --
> Anita
>
>
> "Toppers" wrote:
>
> > Use this as a model, placed in your Summary sheet:
> >
> > It checks if the value in Sheet1 (Order sheet) , column A is > 0 (e.g.
> > Quantities) and the answer is true, copies the data in the INDEX range on
> > Sheet1 - in this case quantities - to your summary sheet.
> >
> > If you are copying contiguous columns from the Order sheet, you can copy the
> > formula across for the required number of columns and the INDEX range will
> > change from A to B etc and then down for as many rows as required (until
> > blank line).
> >
> > =IF(ISERROR(SMALL(IF(Sheet1!$A$1:$A$20>0,ROW(Sheet1!$A$1:$A$20),""),ROW($A1))),"",INDEX(Sheet1!A$1:A$20,N(SMALL(IF(Sheet1!$A$1:$A$20>0,ROW(Sheet1!$A$1:$A$20),""),ROW($A1)))))
> >
> > Change ranges to suit
> >
> > HTH
> >
> > "Anita" wrote:
> >
> > > I have a two page order sheet . You can fill in quantities ordered for each
> > > item. I want a summary order that only populates the lines ordered into a
> > > summary sheet. Is this possible to program in excel? If so, how?
> > > --
> > > Anita

 
Reply With Quote
 
=?Utf-8?B?QW5pdGE=?=
Guest
Posts: n/a
 
      24th Jun 2007
Did you receive my e-mail?
--
Anita


"Toppers" wrote:

> If you check your quantity field (> 0?) then it will return data only for
> those rows which met this condition. The formula only returns the value of
> cell in the INDEX range (into the cell in which the formula exits). If you
> need to return several columns of data, the INDEX range needs to reflect the
> ranges (columns) in your ORDER w/sheet.
>
> If you want send a sample w/book to:
>
> toppers <at> NOSPAMjohntopley.fsnet.co.uk
>
> remove NOSPAM
>
> HTH
>
> "Anita" wrote:
>
> > Thank you. Unless I am using this incorrectly, it will return a value in one
> > cell in the same reference area on the summary sheet. I would basically like
> > to fill in the same order sheet into a summary that only populates the lines
> > that have a been ordered. So if I had 40 lines of widgets on a spreadsheet
> > two pages long, and a customer enters QTy 1 on line two to order widget 2,
> > and enters QTY 3 on line 39 to order Widget 39, then only those two rows -
> > the complete row- will poulate on the summary page.
> > --
> > Anita
> >
> >
> > "Toppers" wrote:
> >
> > > Use this as a model, placed in your Summary sheet:
> > >
> > > It checks if the value in Sheet1 (Order sheet) , column A is > 0 (e.g.
> > > Quantities) and the answer is true, copies the data in the INDEX range on
> > > Sheet1 - in this case quantities - to your summary sheet.
> > >
> > > If you are copying contiguous columns from the Order sheet, you can copy the
> > > formula across for the required number of columns and the INDEX range will
> > > change from A to B etc and then down for as many rows as required (until
> > > blank line).
> > >
> > > =IF(ISERROR(SMALL(IF(Sheet1!$A$1:$A$20>0,ROW(Sheet1!$A$1:$A$20),""),ROW($A1))),"",INDEX(Sheet1!A$1:A$20,N(SMALL(IF(Sheet1!$A$1:$A$20>0,ROW(Sheet1!$A$1:$A$20),""),ROW($A1)))))
> > >
> > > Change ranges to suit
> > >
> > > HTH
> > >
> > > "Anita" wrote:
> > >
> > > > I have a two page order sheet . You can fill in quantities ordered for each
> > > > item. I want a summary order that only populates the lines ordered into a
> > > > summary sheet. Is this possible to program in excel? If so, how?
> > > > --
> > > > Anita

 
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
Re: [ACCESS 2003] REport: per page summary, total summary Marshall Barton Microsoft Access Reports 0 7th Jun 2009 03:12 PM
Automatic Summary Sheet =?Utf-8?B?QW5pdGE=?= Microsoft Excel Worksheet Functions 0 23rd Jun 2007 04:44 PM
Designer Templates - automatic summary comments? =?Utf-8?B?U2NvdHQgTS4=?= Microsoft C# .NET 0 21st Apr 2007 11:16 PM
Automatic udates on a summary sheet Slo_chugger@yahoo.com Microsoft Excel Misc 3 10th Aug 2006 02:45 AM
Adding a second summary field/page?/Merging summary report Alex Martinez Microsoft Access Reports 1 21st Sep 2005 04:42 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 09:15 PM.