Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi I am trying to trying to group various time stamps into intervals this is the sort of data that i have
Interv Table
Dialer Table
I want to track the volume of calls per endstate, per interval, on a daily ,monthly,on a campaign level etc....
This is my script but i am not sure if the correct way to do it.
Any help will be appreciated.
Interv:LOAD TIME(IntervalStart,'hh:ss')as "IStart", TIME(IntervalEnd,'hh:ss')as "IEnd", [interval time]as "IntervalTime"FROM(ooxml, embedded labels, table is Sheet1);Dialer:LOAD acc_code, callednumber, campaigndescription, endstate_description, numbertype, starttime, TIME(STime,'hh:ss')as "Mtime"FROM(ooxml, embedded labels, table is Sheet1);IntervalMatch ( Mtime) LOAD IStart,IEnd RESIDENT Interv;
Thanks
Shaun