Skip to main content
Announcements
Have questions about Qlik Connect? Join us live on April 10th, at 11 AM ET: SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
joeybird
Creator III
Creator III

calculation expression , display answer in as...


Hiya

I have a an time expression calculation

interval(avg(ShoppingTime)/1440,'h:mm') - interval(avg(ActualShoppingTime)/1440,'h:mm')

I wish to if the answer is a minus, just show 00:00:00 and not e.g - 01:00:00

is this possible please

1 Solution

Accepted Solutions
sunny_talwar

May be this:

Interval(If(Avg(ShoppingTime) - Avg(ActualShoppingTime) <= 0, 0, (Avg(ShoppingTime) - Avg(ActualShoppingTime))/1440), 'h:mm')

View solution in original post

4 Replies
krishna_2644
Specialist III
Specialist III

Try

=fabs(interval(avg(ShoppingTime)/1440,'h:mm') - interval(avg(ActualShoppingTime)/1440,'h:mm'))

- fabs() function returns the absolute value of x. The result is a positive number.

marcus_sommer

I think you will need an if-check like:

interval(if(avg(ShoppingTime) <  avg(ActualShoppingTime), 0,

(avg(ShoppingTime) - avg(ActualShoppingTime)) /1440),'h:mm')

- Marcus

sunny_talwar

May be this:

Interval(If(Avg(ShoppingTime) - Avg(ActualShoppingTime) <= 0, 0, (Avg(ShoppingTime) - Avg(ActualShoppingTime))/1440), 'h:mm')

joeybird
Creator III
Creator III
Author

awesome thank you , worked brill