
Signature
HTH
Bob
(there's no email, no snail mail, but somewhere should be gmail in my addy)
>I have a spreadsheet that tracks reports. In a far right-hand column,
> I have a cell for when a re-write is submitted. I put an "X" in the
[quoted text clipped - 7 lines]
>
> Ed
Bob:
I'm in XL2003. I don't seem to have an ISDATE function??? I have the
Analysis toolpack loaded.
Ed
> Select report number cell
> Menu Format>Conditional Formatting
[quoted text clipped - 39 lines]
>
> - Show quoted text -
Bob Phillips - 08 Aug 2007 17:18 GMT
Nor do I <g>
I should have said
Add a formula of =IsADate(N1)
and included that function
Function IsADate(inDate)
IsADate = IsDate(inDate)
End Function

Signature
HTH
Bob
(there's no email, no snail mail, but somewhere should be gmail in my addy)
> Bob:
>
[quoted text clipped - 47 lines]
>>
>> - Show quoted text -
Peo Sjoblom - 08 Aug 2007 17:18 GMT
There is no such thing
since dates are numbers you can use
=ISNUMBER(N1)

Signature
Regards,
Peo Sjoblom
> Bob:
>
[quoted text clipped - 47 lines]
>>
>> - Show quoted text -
Dave Peterson - 08 Aug 2007 17:19 GMT
I bet Bob created his own user defined function called =isdate().
But you may be able to use this formula instead:
=AND(ISNUMBER(n1),LEFT(CELL("format",n1),1)="D")
> Bob:
>
[quoted text clipped - 46 lines]
> >
> > - Show quoted text -

Signature
Dave Peterson
Ed from AZ - 10 Aug 2007 16:02 GMT
Thanks for all the input. Between all of this, I have managed to get
up and running.
Appreciate the boost.
Ed
> I bet Bob created his own user defined function called =isdate().
>
[quoted text clipped - 58 lines]
>
> - Show quoted text -
Bob Phillips - 11 Aug 2007 12:54 GMT
>I bet Bob created his own user defined function called =isdate().
>
> But you may be able to use this formula instead:
>
> =AND(ISNUMBER(n1),LEFT(CELL("format",n1),1)="D")
That's quite clever.