Does anyone know what the date conversion is to produce yyyymmdd format?
Cheers
> Does anyone know what the date conversion is to produce yyyymmdd format?
I'm not aware of any single conversion that will do this although I'm sure
someone will correct me if i'm wrong :o). However, you could build a string
as follows:
NEWDATE = OCONV(DATE(),"DY"):OCONV(DATE(),"DM") "R%2":OCONV(DATE(),"DD")
"R%2"
Cheers,
Gary.
Basic:
oconv(date(),'dy'):oconv(date(),'dm')'r%2':oconv(date(),'dd')'r%2'
Correlative:
f;d(dy);c10000;*;d(dm);c100;*;+;d(dd);+
Mark
=======================
PaulP wrote:
>
> Hi, Everybody
>
> Does anyone know what the date conversion is to produce yyyymmdd format?
>
> Cheers
--
Sincerely,
--
Mark Brown
Manager, Continuing Engineering
Pick Systems, Inc. USA
Dew knot trussed yore spell chequer two fined awl mistakes!
PaulP <ppark...@idealnet.co.uk> wrote in message
news:7lsken$2d7$1...@news1.cableinet.co.uk...
Need to know the platform first. Differs between UD UV D3 etc....
Keith Pearson
>>
>>
>
>
Oconv(Date(), "D-YMD[4,2,2]":@VM:"MCN")
The "D-YMD[4,2,2]" produces "yyyy-mm-dd" format, and the "MCN" filters out
any non-numeric characters.
PaulP wrote in message <7lsken$2d7$1...@news1.cableinet.co.uk>...
Regards
Paul Homer