Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi
I have a field that calculates an average call time.
From this value, I want to take away 3 mins 30 seconds into a text box. What is the correct expression to use?
Currently I've got:
=time(Avg(CallTime),'hh:mm:ss')-(time(003330),'hh:mm:ss')
which obviously isn't working!! Hope you can help!
![]()
Try this:
=Interval(interval#(000330, 'hhmmss'),'hh:mm:ss')
It will display:
Slight Change: 3 mins and 30 seconds will be 000330 instead of 003330
Try this:
=Interval(Interval#(CallTime,'hh:mm:ss') - Interval#(000330,'hhmmss'), 'hh:mm:ss')
Posting a document where I used it in a text box with CallTime = '10:52:30'
I've tried the expression, but still coming up with an error. I've tried with both interval# and time#
try tis,
=Interval(Interval(Sum(ProProductiveTime),'hh:mm:ss') -Interval(Sum(ProNonProductiveTime),'hh:mm:ss'),'hh:mm:ss')
Can you share a sample of where is not working?
Best,
Sunny
I've just tested displaying 000330 in a time format.
=time(000330,'hh:mm:ss')
This returns a text box of 00:00:00. So the only point of failure is trying to get the 3 minutes and 30 seconds to display correctly.
Try this:
=Interval(interval#(000330, 'hhmmss'),'hh:mm:ss')
It will display:
Perfect!
=interval(time(avg(calltime),'hh:mm:ss') - interval#(000330,'hhmmss'),'hh:mm:ss')
Gives me exactly what I need
Thans for your help!
That's what I kind of gave earlier also. It didn't have Avg() in it.
But I am glad it all worked out for you in the end.
Best,
Sunny