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

Announcements
Q&A with Qlik - Qlik Cloud Migration: Questions about migrating to Qlik Cloud? Catch the latest replay!
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?

Labels (1)
3 Replies
PrashantSangle
MVP
MVP

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
MVP
MVP

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
MVP
MVP

PFA a sample application for your reference:

Best,

Sunny