Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I'm trying to sum the OpenTime field per CALLID.
Need the total of 239775 to show in all the rows in the next column, do you perhaps know how to do this?
Tried aggr(sum(OpenTime, CALLID) but that doesn't seem to be working.
Thanks
Hi,
Instead of using an Aggr function you can use following
sum(Total <CALLID> OpenTime)
or
You can modify your Aggr function
sum(aggr(sum(OpenTime),CALLID))
Thanks & Best Regards,
Kuldeep Tak