Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi
I need to count how many cases are assigned to a rep within 24 hours.
Default assignment is to "System Administrator" and I'm trying to count since the created date...
I'm trying:
=count (24 * ({$< [Assigned To] = {'System Administrator'}>} num(Interval(now() - [Created],'DD'),'##.#')) distinct [Case ID])
It's not working - so appreciate any help here.....
Thanks!!
What you have in [Created]? TImestamp?
Try this:
count ({$< [Assigned To] = {'System Administrator'},[Created]={">=timestamp(now()-1)"} >} distinct [Case ID])