Hello from Holland!
I try to convert a date from AS400 query to MS Access through an ODBC.
Fields are as follows: LKINGD (day) LKINGM (month) and LKINGJ (year).
The desired result is: dd/mm/yy or dd-mm-yy.
I use the following formula in AS400 query:
date(digits(LKINGD)||'/'||digits(LKINGM)||'/'||digits(LKINGJ))
Running the query does not work.
How come?
By using the following formula:
digits(LKINGD)||digits(LKINGM)||digits(LKINGJ)
I succeed in transferring to MS Acces but the outcome is kind of strange: "F0F1F1" instead of "011190" that I expected.
Who can help me??
Thanks in advance,
Robert
I try to convert a date from AS400 query to MS Access through an ODBC.
Fields are as follows: LKINGD (day) LKINGM (month) and LKINGJ (year).
The desired result is: dd/mm/yy or dd-mm-yy.
I use the following formula in AS400 query:
date(digits(LKINGD)||'/'||digits(LKINGM)||'/'||digits(LKINGJ))
Running the query does not work.
How come?
By using the following formula:
digits(LKINGD)||digits(LKINGM)||digits(LKINGJ)
I succeed in transferring to MS Acces but the outcome is kind of strange: "F0F1F1" instead of "011190" that I expected.
Who can help me??
Thanks in advance,
Robert