> I've looked through the posts but I can't find a suitable answer. I've
> got a
[quoted text clipped - 5 lines]
> Is attempting to make this a date field the way to go? Is there a better
> way?
Thank you both for the replies.
Pieter I like it, thank you for the lead.
I don't know if its doing what I need it to though. It seems as if there
are some that work and some that don't 050598 came up as May 5, 1998. I
believe that is correct. But when I look at 082694, this comes up as
February 8, 1996 (not August 26, 1994).
I am running Windows XP, Access 07, if you can think of anything else...
But again, thank you

Signature
http://njgin.aclink.org
> To Convert it Use
>
[quoted text clipped - 17 lines]
> > Is attempting to make this a date field the way to go? Is there a better
> > way?
Douglas J. Steele - 12 Sep 2007 19:34 GMT
Pieter had a slight typo. It should be
DateSerial(Right([MyField],2), Left([MyField],2), Mid([MyField],3,2))
Note that MyField must be a text field for that to work. If it's numeric,
you need to ensure that it's converted into a 6 character string:
DateSerial(Right(Format([MyField], "000000"),2), Left(Format([MyField],
"000000"),2), Mid(Format([MyField], "000000"),3,2))

Signature
Doug Steele, Microsoft Access MVP
http://I.Am/DougSteele
(no e-mails, please!)
> Thank you both for the replies.
>
[quoted text clipped - 32 lines]
>> > better
>> > way?
scratchtrax - 12 Sep 2007 19:40 GMT
Thank you! Thank you!
Minor modification and I got it
Thank you Pieter!!!!
This is what ended up working:
DateSerial(Right([DeedDate],2),Left([DeedDate],2),Mid([DeedDate],3,2))
Little different but I couldn't have gotten there without you, Thank you!!

Signature
http://njgin.aclink.org
> Thank you both for the replies.
>
[quoted text clipped - 29 lines]
> > > Is attempting to make this a date field the way to go? Is there a better
> > > way?
Pieter Wijnen - 12 Sep 2007 20:26 GMT
Not typo, just misreading <g>
Pieter
> Thank you! Thank you!
>
[quoted text clipped - 45 lines]
>> > > better
>> > > way?