Min Max What's Wrong?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

XP Pro Office 2003
I have this in cell A2:
="For "&TEXT(MIN(A4:A36),"dd-mmm-yy")&" through
"&TEXT(MAX(A4:A36),"dd-mmm-yy")

I enter today's date in cell A4 and get this returned in cell A2
For 00-Jan-00 through 04-Oct-06

Why am I not getting correct date for MIN?

Thanks
 
I think you *do* get the right answer for MIN. One of your cells in A4:A36 is zero or something which is interpreted as zero by
the MIN function.
You can check by inserting a column in which you copy column A and format it as number.

--
Kind regards,

Niek Otten
Microsoft MVP - Excel

| XP Pro Office 2003
| I have this in cell A2:
| ="For "&TEXT(MIN(A4:A36),"dd-mmm-yy")&" through
| "&TEXT(MAX(A4:A36),"dd-mmm-yy")
|
| I enter today's date in cell A4 and get this returned in cell A2
| For 00-Jan-00 through 04-Oct-06
|
| Why am I not getting correct date for MIN?
|
| Thanks
 
<in which you copy column A>

I mean with an =
--
Kind regards,

Niek Otten
Microsoft MVP - Excel
formula, like
=A4
=A5

etc

|I think you *do* get the right answer for MIN. One of your cells in A4:A36 is zero or something which is interpreted as zero by
| the MIN function.
| You can check by inserting a column in which you copy column A and format it as number.
|
| --
| Kind regards,
|
| Niek Otten
| Microsoft MVP - Excel
|
|| XP Pro Office 2003
|| I have this in cell A2:
|| ="For "&TEXT(MIN(A4:A36),"dd-mmm-yy")&" through
|| "&TEXT(MAX(A4:A36),"dd-mmm-yy")
||
|| I enter today's date in cell A4 and get this returned in cell A2
|| For 00-Jan-00 through 04-Oct-06
||
|| Why am I not getting correct date for MIN?
||
|| Thanks
|
|
 
Dave and Nick
Nick you are right. I had cells in the range with formated for date and MIN
was picking that up. Nothing wrong after all.

I apologize for my oversight, but appreciate your responses and help.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top