Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello,
I am using an Informix database and I only want to select the records of this date.
However, the date field has the following format:
7869187
The date can be calculated as follows: 9.000.000 - 7.869.187 = 1.130.813 = 113-08-13 (format 1YY-MM-DD).
I would have to get rid of the 1 in front of the number, and create a date format.
How can i accomplish this?
try :
Date(Date#(Mid( 9000000-Num(YourDateField),1), YYMMDD), 'YY-MM-DD') as Date
try :
Date(Date#(Mid( 9000000-Num(YourDateField),1), YYMMDD), 'YY-MM-DD') as Date
Try Date(Date#(8000000-YourDateField), YYMMDD), 'YY-MM-DD') as Date
Thank you. I also need a variable with the date of today in this format. Any ideas?
When I use num(today()) I get 41444
try:
Date(today(),'YY-MM-DD')
the result has to be 7.869.187
this?
=9000000-Num(today())
You can use get from this
=9000000 - Num#(Text(Date(Today(),'1YYMMDD')),'#')
Hope it helps
Celambarasan
If num(today()) = 41499 on 2013-08-13 then use:
=7910686-num(today())
to get as result: 7869187
- Ralf