Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Olá a todos,
Estou extraindo informações de um banco de dados (Oracle) que trata a data como numero inteiro. Por exemplo: 19/03/2015 ele trata como 9208.
O nome do campo é ID_DT. Como faço para transformar esse numero em Ano, Mês e Dia?
If nothing will work add add 32874
32874 is 1.1.1990 in most calendar date format.
(try in Excel)
For most calendars 1 is equal to 1.1.1900.
It looks like Oracle calendar start in 1.1.1990 (which is 1)
so Date(Your field+32874)
The you can create Date,Month,Year using Qlik fucntions
Hi,
Use Date(FieldName)
Regards
When do this, return is 16/03/1925 and the correct it is 19/03/2015.
Hi,
There is no issue in Date()
Possible post sample apps.
Regards,
If nothing will work add add 32874
32874 is 1.1.1990 in most calendar date format.
(try in Excel)
For most calendars 1 is equal to 1.1.1900.
It looks like Oracle calendar start in 1.1.1990 (which is 1)
so Date(Your field+32874)
The you can create Date,Month,Year using Qlik fucntions
Perfect!
Thanks!