Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello Guys,
I am trying to create a variable with the below expression:
=interval(Avg({<Date={'>=$(=Date(Max(Date)))<=$(=Date(Max(Date)))'}>}conv)/24, 'hh:mm:ss')
The conv is the conversation time but unfortunately there is something wrong with the formula.
When i do the expression as below i get the answer in numeric but I need it in time 'hh:mm:ss'
=Avg({<Date={'>=$(=Date(Max(Date)))<=$(=Date(Max(Date)))'}>}conv)
Any suggestions.
Thanks,
Hasvine
Why do you need to divide your expression with 24? What number do you get when you don't use interval function?
The answer i get is 0,001787003
I tried removing the /24 and its working great.
Thanks
If the output you are expected it 00:02:34 then try this:
=Interval('0.001787003', 'hh:mm:ss') or without 24
=interval(Avg({<Date={'>=$(=Date(Max(Date)))<=$(=Date(Max(Date)))'}>}conv), 'hh:mm:ss')
Awesome
Thanks for your help.