Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik Connect 2026! Turn data into bold moves, April 13 -15: Learn More!
cancel
Showing results for 
Search instead for 
Did you mean: 
Iamsoul69
Contributor
Contributor

How to Count ??

Dear All Expert in Qlik Sense,

      I have a table this, 

Iamsoul69_0-1695629411687.png

      I would like to Count TIME that > 30 minute ( Time come form END-START) 

and 

If I need to set a transaction that over 30 munite is "OutTime" and not over 30 munite si "InTime" in Master Messure, How the fx that I can use, 

 

Thankyou for all Support, 

ESoul

Labels (2)
1 Reply
sbaro_bd
Creator III
Creator III

Hi @Iamsoul69 ,

Create a TIME dimension in script and associated it to a flag  : 

IF(TIME > 30,'OutTime','InTime') as Flag

 And then : 

Count(IF(Flag='OutTime',Flag))

 Regards.