Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 71
Default automatic summary page

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
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 4,339
Default automatic summary page

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$200,ROW(Sheet 1!$A$1:$A$20),""),ROW($A1))),"",INDEX(Sheet1!A$1:A $20,N(SMALL(IF(Sheet1!$A$1:$A$200,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

  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 71
Default automatic summary page

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$200,ROW(Sheet 1!$A$1:$A$20),""),ROW($A1))),"",INDEX(Sheet1!A$1:A $20,N(SMALL(IF(Sheet1!$A$1:$A$200,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

  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 4,339
Default automatic summary page

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$200,ROW(Sheet 1!$A$1:$A$20),""),ROW($A1))),"",INDEX(Sheet1!A$1:A $20,N(SMALL(IF(Sheet1!$A$1:$A$200,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

  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 71
Default automatic summary page

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$200,ROW(Sheet 1!$A$1:$A$20),""),ROW($A1))),"",INDEX(Sheet1!A$1:A $20,N(SMALL(IF(Sheet1!$A$1:$A$200,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
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
Summary page for 12 worksheets ACM Excel Discussion (Misc queries) 11 January 15th 08 12:06 PM
Summary page sevans Excel Discussion (Misc queries) 1 August 31st 06 02:04 PM
Automatic udates on a summary sheet [email protected] Excel Discussion (Misc queries) 3 August 10th 06 02:45 AM
Summary Page Question EyeNoNothing via OfficeKB.com Excel Discussion (Misc queries) 1 February 18th 06 10:03 PM
Creating a summary Page Newbie81 via OfficeKB.com Excel Discussion (Misc queries) 4 January 6th 06 11:56 AM


All times are GMT +1. The time now is 02:55 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"