Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello everyone,
How can i create buckets from measure?
Eg. I have Count(CallId) as total and want to create buckets for total. How can i achieve this?
Cant use class function because class function needs field not measure!
Thanks!!!
Then try this:
Aggr(Class(Count(CallID),10), AtmCode)
Thankyou so much,got the output as expected .