Functions - Rounding by intervals | Community
Skip to main content
Level 2
December 21, 2021
Solved

Functions - Rounding by intervals

  • December 21, 2021
  • 1 reply
  • 1504 views

Hi there,

I was just wondering how you would go about rounding in intervals through functions?

For example - 

If number is between 0-10, round as 10, 10-20 as 20, 20-30 as 30.

Cheers,
Mo

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by bisswang

What you could do is to use the Ceil function which rounds to the next full integer.

So if you devide by then, then use Ceil and then multiply again by 10 you should get what you are looking for.

Though if 10 should be mapped to "20" it won't work, then you may need to check for @2785667 + 1 here

Ceil(@test / 10) * 10

1 reply

bisswangAdobe EmployeeAccepted solution
Adobe Employee
December 21, 2021

What you could do is to use the Ceil function which rounds to the next full integer.

So if you devide by then, then use Ceil and then multiply again by 10 you should get what you are looking for.

Though if 10 should be mapped to "20" it won't work, then you may need to check for @2785667 + 1 here

Ceil(@test / 10) * 10

user03817Author
Level 2
December 21, 2021

Hi Ramon,

Thanks for the response. What if the field type is text? The data is being queried from a custom ACS Table and is being sent from PEGA. It's also an eVar field and plans are to apply the function through an enrichment activity.

I tried using the the Ceil but received the error below

PGS-220000 PostgreSQL error: ERROR: operator does not exist: character varying / integer LINE 1: ...alia/Canberra' AS date), Ceil(C1.sAddressPostcode / 1000) * ... ^ HINT: No operator matches the given name and argument types. You might need to add explicit type casts.

Adobe Employee
December 21, 2021

if you know that it's a number, you can do a ToInteger(..) call there