Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 106
Default Find Earliest Date

Hello,

I have 2 dates, not in any order. I would like to create a formula to give
me the earliest date of the 2.

Example:

A B C
1 Date1 Date2 Result/Answer
2 4/20/08 1/20/08 1/20/08
3 2/28/08 5/10/08 2/28/08
4 5/7/08 2/14/08 2/14/08

I thank you in advanced for your continued support.
--
Respectfully... Elaine
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2,389
Default Find Earliest Date

=min(a2,b2)

Regards,
Fred.

"Elaine" wrote in message
...
Hello,

I have 2 dates, not in any order. I would like to create a formula to give
me the earliest date of the 2.

Example:

A B C
1 Date1 Date2 Result/Answer
2 4/20/08 1/20/08 1/20/08
3 2/28/08 5/10/08 2/28/08
4 5/7/08 2/14/08 2/14/08

I thank you in advanced for your continued support.
--
Respectfully... Elaine


  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 15,768
Default Find Earliest Date

=MIN(A2:B2)

Copy down as needed.

--
Biff
Microsoft Excel MVP


"Elaine" wrote in message
...
Hello,

I have 2 dates, not in any order. I would like to create a formula to give
me the earliest date of the 2.

Example:

A B C
1 Date1 Date2 Result/Answer
2 4/20/08 1/20/08 1/20/08
3 2/28/08 5/10/08 2/28/08
4 5/7/08 2/14/08 2/14/08

I thank you in advanced for your continued support.
--
Respectfully... Elaine



  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 106
Default Find Earliest Date

I can't believe it! Here I am making it more difficult than it is.

Fred Smith & T. Valko both of you are the best.

My "humble" thank you to both of you.

Elaine
--
"T. Valko" wrote:

=MIN(A2:B2)

Copy down as needed.

--
Biff
Microsoft Excel MVP


"Elaine" wrote in message
...
Hello,

I have 2 dates, not in any order. I would like to create a formula to give
me the earliest date of the 2.

Example:

A B C
1 Date1 Date2 Result/Answer
2 4/20/08 1/20/08 1/20/08
3 2/28/08 5/10/08 2/28/08
4 5/7/08 2/14/08 2/14/08

I thank you in advanced for your continued support.
--
Respectfully... Elaine




  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 15,768
Default Find Earliest Date

You're welcome!

--
Biff
Microsoft Excel MVP


"Elaine" wrote in message
...
I can't believe it! Here I am making it more difficult than it is.

Fred Smith & T. Valko both of you are the best.

My "humble" thank you to both of you.

Elaine
--
"T. Valko" wrote:

=MIN(A2:B2)

Copy down as needed.

--
Biff
Microsoft Excel MVP


"Elaine" wrote in message
...
Hello,

I have 2 dates, not in any order. I would like to create a formula to
give
me the earliest date of the 2.

Example:

A B C
1 Date1 Date2 Result/Answer
2 4/20/08 1/20/08 1/20/08
3 2/28/08 5/10/08 2/28/08
4 5/7/08 2/14/08 2/14/08

I thank you in advanced for your continued support.
--
Respectfully... Elaine








  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1
Default Oldest date

How then do I get around the problem if dates are not nicely linend up, but placed f.inst every 3'rd row? Or in the example the oldest of all cells in the area A1 to B3 ?

Another problem I fight with is that if I use the "SMALL" function it chokes if I try to omit "zero dates" - 00-01-1900 or 1904. If the list only have one of these, I can omit by the parameter SMALL A1:A20;1 which gives me the secondsmallest value, but if there are two of these I must replace ;1 by ;2 giving me the thirdsmallest value, and as these sheets are updated form outside DB's, I never know how many dates I have.

How do I fix that?



Fred Smith wrote:

Find Earliest Date
08-May-08

=min(a2,b2)

Regards,
Fred.

Previous Posts In This Thread:

On Thursday, May 08, 2008 12:42 AM
Elain wrote:

Find Earliest Date
Hello,

I have 2 dates, not in any order. I would like to create a formula to give
me the earliest date of the 2.

Example:

A B C
1 Date1 Date2 Result/Answer
2 4/20/08 1/20/08 1/20/08
3 2/28/08 5/10/08 2/28/08
4 5/7/08 2/14/08 2/14/08

I thank you in advanced for your continued support.
--
Respectfully... Elaine

On Thursday, May 08, 2008 12:46 AM
Fred Smith wrote:

Find Earliest Date
=min(a2,b2)

Regards,
Fred.

On Thursday, May 08, 2008 12:48 AM
T. Valko wrote:

Find Earliest Date
=MIN(A2:B2)

Copy down as needed.

--
Biff
Microsoft Excel MVP

On Thursday, May 08, 2008 12:58 AM
Elain wrote:

I can't believe it!
I cannot believe it! Here I am making it more difficult than it is.

Fred Smith & T. Valko both of you are the best.

My "humble" thank you to both of you.

Elaine
--
"T. Valko" wrote:

On Thursday, May 08, 2008 1:27 AM
T. Valko wrote:

You're welcome!
You're welcome!

--
Biff
Microsoft Excel MVP


Submitted via EggHeadCafe - Software Developer Portal of Choice
WPF Circular Progress Indicator
http://www.eggheadcafe.com/tutorials...gress-ind.aspx
  #7   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 5,441
Default Oldest date

Dates are the number of whole days since 12/31/1899 (or 1903 if using the
1904 date system). You can array-enter a formula like one of these, using
Ctrl-Shift-Enter:

=MIN(IF(A1:D10<"",A1:D10))
=MIN(IF(A1:D100,A1:D10))
=MIN(IF(A1:D1010000,A1:D10))

One of those should work.


HTH,
Bernie
MS Excel MVP


<Peter Krogsten wrote in message ...
How then do I get around the problem if dates are not nicely linend up,
but placed f.inst every 3'rd row? Or in the example the oldest of all
cells in the area A1 to B3 ?

Another problem I fight with is that if I use the "SMALL" function it
chokes if I try to omit "zero dates" - 00-01-1900 or 1904. If the list
only have one of these, I can omit by the parameter SMALL A1:A20;1 which
gives me the secondsmallest value, but if there are two of these I must
replace ;1 by ;2 giving me the thirdsmallest value, and as these sheets
are updated form outside DB's, I never know how many dates I have.

How do I fix that?



Fred Smith wrote:

Find Earliest Date
08-May-08

=min(a2,b2)

Regards,
Fred.

Previous Posts In This Thread:

On Thursday, May 08, 2008 12:42 AM
Elain wrote:

Find Earliest Date
Hello,

I have 2 dates, not in any order. I would like to create a formula to give
me the earliest date of the 2.

Example:

A B C
1 Date1 Date2 Result/Answer
2 4/20/08 1/20/08 1/20/08
3 2/28/08 5/10/08 2/28/08
4 5/7/08 2/14/08 2/14/08

I thank you in advanced for your continued support.
--
Respectfully... Elaine

On Thursday, May 08, 2008 12:46 AM
Fred Smith wrote:

Find Earliest Date
=min(a2,b2)

Regards,
Fred.

On Thursday, May 08, 2008 12:48 AM
T. Valko wrote:

Find Earliest Date
=MIN(A2:B2)

Copy down as needed.

--
Biff
Microsoft Excel MVP

On Thursday, May 08, 2008 12:58 AM
Elain wrote:

I can't believe it!
I cannot believe it! Here I am making it more difficult than it is.

Fred Smith & T. Valko both of you are the best.

My "humble" thank you to both of you.

Elaine
--
"T. Valko" wrote:

On Thursday, May 08, 2008 1:27 AM
T. Valko wrote:

You're welcome!
You're welcome!

--
Biff
Microsoft Excel MVP


Submitted via EggHeadCafe - Software Developer Portal of Choice
WPF Circular Progress Indicator
http://www.eggheadcafe.com/tutorials...gress-ind.aspx



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
how do you find the earliest date when using an IF function? ree Excel Worksheet Functions 5 November 8th 07 06:16 AM
Find earliest date combined with status Ixtreme Excel Discussion (Misc queries) 2 August 28th 07 04:14 AM
How do I find the earliest date? Dave Shultz Excel Discussion (Misc queries) 1 May 11th 07 06:45 PM
Find the earliest date in a range of dates? Rachel Williams Excel Worksheet Functions 2 February 10th 06 03:50 PM
Earliest Date to populate? sonquizzon Excel Worksheet Functions 2 June 16th 05 07:35 PM


All times are GMT +1. The time now is 01:38 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"