Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 4
Default Summary of Multiple Date Ranges

I have 5 worksheet tabs within the same spreadsheet. Each
tab has two columns with a beginning date (col A) and
ending date (col B). I.e.

Beg Date End Date Amt
11/24/03 1/14/04 $100
1/15/04 7/14/04 $150

etc.

The beginning and end dates are not the same for each tab.

I would like to create a summary that goes through all the
beginning dates and identifies the smallest date, the next
smallest date etc. to create one summary of all the dates.

MIN and MINA indentify the first smallest date, however, I
am unable to identify the next smallest date.

Is this possible? Thank you.
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 63
Default Summary of Multiple Date Ranges

Laura,

If your data is in A1:A25, you can use
SMALL($A$1:$A$25, 2) to find the second smallest value. Bij changing the
value of 2 you can find 3th; 4th etc. smallest values.
SMALL($A$1:$A$25,1) is equivalent to MIN($A$1:$A:$25)



--
Regards,
Auk Ales

* Please reply to this newsgroup only *
* I will not react on unsolicited e-mails *

"Laura" wrote in message
...
I have 5 worksheet tabs within the same spreadsheet. Each
tab has two columns with a beginning date (col A) and
ending date (col B). I.e.

Beg Date End Date Amt
11/24/03 1/14/04 $100
1/15/04 7/14/04 $150

etc.

The beginning and end dates are not the same for each tab.

I would like to create a summary that goes through all the
beginning dates and identifies the smallest date, the next
smallest date etc. to create one summary of all the dates.

MIN and MINA indentify the first smallest date, however, I
am unable to identify the next smallest date.

Is this possible? Thank you.



  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 4
Default Summary of Multiple Date Ranges

I think SMALL may be the way to go, however, my data is in
('SHEET1'!A1:A25,'SHEET2'!A1:A25,'SHEET3'!A1:A25,' SHEET4'!
A1:A25,'SHEET5'!A1:A25). SMALL
-----Original Message-----
Laura,

If your data is in A1:A25, you can use
SMALL($A$1:$A$25, 2) to find the second smallest value.

Bij changing the
value of 2 you can find 3th; 4th etc. smallest values.
SMALL($A$1:$A$25,1) is equivalent to MIN($A$1:$A:$25)



--
Regards,
Auk Ales

* Please reply to this newsgroup only *
* I will not react on unsolicited e-mails *

"Laura" wrote in

message
...
I have 5 worksheet tabs within the same spreadsheet.

Each
tab has two columns with a beginning date (col A) and
ending date (col B). I.e.

Beg Date End Date Amt
11/24/03 1/14/04 $100
1/15/04 7/14/04 $150

etc.

The beginning and end dates are not the same for each

tab.

I would like to create a summary that goes through all

the
beginning dates and identifies the smallest date, the

next
smallest date etc. to create one summary of all the

dates.

MIN and MINA indentify the first smallest date,

however, I
am unable to identify the next smallest date.

Is this possible? Thank you.



.

  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 63
Default Summary of Multiple Date Ranges

Isn't it possible to copy the various ranges to one sheet and to then do a
simple sort of it.

If that isn't possible ( for instance because you regularly have to update
your data in the 5 "basic" sheets, I think you will need a macro to do what
you want).

I don't see how you can do what you want to do simply by "normal" Excel
functions.

The macro should have to loop through your sheets, copy the dataranges and
paste them onto your summarysheet.
After that it would sort the total data range on your summarysheet.

--
Regards,
Auk Ales

* Please reply to this newsgroup only *
* I will not react on unsolicited e-mails *

"Laura" wrote in message
...
I think SMALL may be the way to go, however, my data is in
('SHEET1'!A1:A25,'SHEET2'!A1:A25,'SHEET3'!A1:A25,' SHEET4'!
A1:A25,'SHEET5'!A1:A25). SMALL
-----Original Message-----
Laura,

If your data is in A1:A25, you can use
SMALL($A$1:$A$25, 2) to find the second smallest value.

Bij changing the
value of 2 you can find 3th; 4th etc. smallest values.
SMALL($A$1:$A$25,1) is equivalent to MIN($A$1:$A:$25)



--
Regards,
Auk Ales

* Please reply to this newsgroup only *
* I will not react on unsolicited e-mails *

"Laura" wrote in

message
...
I have 5 worksheet tabs within the same spreadsheet.

Each
tab has two columns with a beginning date (col A) and
ending date (col B). I.e.

Beg Date End Date Amt
11/24/03 1/14/04 $100
1/15/04 7/14/04 $150

etc.

The beginning and end dates are not the same for each

tab.

I would like to create a summary that goes through all

the
beginning dates and identifies the smallest date, the

next
smallest date etc. to create one summary of all the

dates.

MIN and MINA indentify the first smallest date,

however, I
am unable to identify the next smallest date.

Is this possible? Thank you.



.



  #5   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 4
Default Summary of Multiple Date Ranges


-----Original Message-----
Laura,

If your data is in A1:A25, you can use
SMALL($A$1:$A$25, 2) to find the second smallest value.

Bij changing the
value of 2 you can find 3th; 4th etc. smallest values.
SMALL($A$1:$A$25,1) is equivalent to MIN($A$1:$A:$25)



--
Regards,
Auk Ales

* Please reply to this newsgroup only *
* I will not react on unsolicited e-mails *

"Laura" wrote in

message
...
I have 5 worksheet tabs within the same spreadsheet.

Each
tab has two columns with a beginning date (col A) and
ending date (col B). I.e.

Beg Date End Date Amt
11/24/03 1/14/04 $100
1/15/04 7/14/04 $150

etc.

The beginning and end dates are not the same for each

tab.

I would like to create a summary that goes through all

the
beginning dates and identifies the smallest date, the

next
smallest date etc. to create one summary of all the

dates.

MIN and MINA indentify the first smallest date,

however, I
am unable to identify the next smallest date.

Is this possible? Thank you.



.
It seems SMALL may be the best route to pursue. The data

is in ('Sheet1'!A1:A25,'Sheet2'!A1:A25,'Sheet3'!
A1:A25,'Sheet4'!A1:A25,'Sheet5'!A1:A25). When use SMALL
with this data, I receive #VALUE! which I am assuming is
Excel saying it doesn't like the multiple worksheets?

Is there some other means to accomplish?

Thank you!


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
Line Chart with multiple series that have different date ranges Rach7110 Charts and Charting in Excel 2 April 26th 23 03:46 AM
Displaying date ranges for multiple years Jonathan Koehler Charts and Charting in Excel 1 August 24th 07 12:33 AM
selecting different cell ranges across sheets, to display on summary page NetMax Excel Discussion (Misc queries) 4 January 17th 06 07:42 PM
Multiple Workbooks Summary tcgaines Excel Worksheet Functions 0 December 13th 05 05:31 PM
summary by date BULEMOON Excel Programming 3 December 28th 03 11:33 AM


All times are GMT +1. The time now is 06:05 PM.

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"