Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
Isabelaa_123
Contributor II
Contributor II

date conversion UTC+1

Hello,

I have problem, because I need to convert date. I have this date 1675495380 what corresponds 2023-01-31 16:00.

My time zone is Warsaw

 

What I should do? I need any advice

 

Labels (2)
1 Solution

Accepted Solutions
Clever_Anjos
Employee
Employee

Your number seems to be a  unix epoch date.

The usual translation is 

TimeStamp(Makedate(1970,1,1)+ 1675495380 /24/60/60 , 'YYYY-MM-DD hh:mm:ss')

you can validate here https://www.epochconverter.com/ 

View solution in original post

1 Reply
Clever_Anjos
Employee
Employee

Your number seems to be a  unix epoch date.

The usual translation is 

TimeStamp(Makedate(1970,1,1)+ 1675495380 /24/60/60 , 'YYYY-MM-DD hh:mm:ss')

you can validate here https://www.epochconverter.com/