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

time between 2 dates in second

hi everybody

I search to obtain time difference between 2 dates in second. In my expression i do

Interval(DATE_END-DATE_START,'hhmmss')

for example i have 030200 it means 3 hours 2 min and zero second.

i would like have result in second equals to 10920 seconds

function second on result give me zero

thx for your help

2 Replies
Anonymous
Not applicable
Author

Hi,

You should be able to do this:

Interval(Today()-(Today()-1),'ss');

Not applicable
Author

thx

you are speed;)

it is ok if i make

Interval(DATE_END-DATE_START,'ss')