Forum Discussion
ayoubb
6 years agoHelper IV
Count by TimeSLOT
Hello,, Thank you for your support and reply, Please could you help me to calculate reporting interactionID per timeslot by using the column Call end time: 06h-07h 07h-08h 08h-09h 09...
ayoubb
6 years agoHelper IV
Thanks a lot RYAN, this is exactly what i want, this is below the result i just want to show that from 06h till 18h in chronological order, is this anything i need to add?
ryan_mayu
6 years agoSuper User
maybe try
column=
var timeslot = HOUR('Table'[call end time])&"h-"&(HOUR('Table'[call end time])+1)&"h"
RETURN IF (HOUR('Table'[call end time])>=6&& HOUR('Table'[call end time])<=17), timeslot, "")