Skip to main content
Announcements
Introducing a new Enhanced File Management feature in Qlik Cloud! GET THE DETAILS!
cancel
Showing results for 
Search instead for 
Did you mean: 
paulwalker
Creator III
Creator III

Need Help??

Hi Community,

i have one table like this..

START DT/TIME            END DT/TIME                    Reload Time      RowsLoaded              Avg Per Min      

05/14/2015 00:15:35        05/14/2015 00:16:00            00.01.25                  80

05/14/2015 08:15:35        05/14/2015 08:16:00            00:01:12                  70

I have  calculated Reload time between startdate and enddate.

Here, how to calculate Rows Loaded per Min?

3 Replies
PrashantSangle

Hi,

Convert your reload Time into Min only then divide it by RowsLoaded will give avg per Min.

Regards,

Great dreamer's dreams never fulfilled, they are always transcended.
Please appreciate our Qlik community members by giving Kudos for sharing their time for your query. If your query is answered, please mark the topic as resolved 🙂
sunny_talwar

Try this:

Table:

LOAD *,

  RowsLoaded*60/Num(Num#(Interval(ReloadTime, 'ss'), '##')) as [Avg Per Min];

LOAD * INLINE [

    ReloadTime, RowsLoaded

    00:01:25, 80

    00:01:12, 70

];


Output:


Capture.PNG

sunny_talwar

PFA a sample application for your reference:

Best,

Sunny