Get Inspire insights from former attendees in our AMA discussion thread on Inspire Buzz. ACEs and other community members are on call all week to answer!

Alteryx Designer Desktop Discussions

Find answers, ask questions, and share expertise about Alteryx Designer Desktop and Intelligence Suite.
SOLVED

Round up To The Nearest Hundred

IJH34
8 - Asteroid

While I know the answer is right in front of my face, I'm struggling to find a solution.

 

I am looking for a formula that will always round a value up to the nearest 100. Tried CEIL function but that just give me nearest integer. 

 

see results below...

original valueexpected value
1000010000
56785700
41424200
629700

 

2 REPLIES 2
alexnajm
16 - Nebula
16 - Nebula

I would look at the ROUND function! Something like ROUND([Field],100) and putting some logic in to say anything under fifty needs to make sure to round up?

(apologies for not having a workflow, on my phone only today)

Felipe_Ribeir0
16 - Nebula

Hi @IJH34 

 

One way of doing this is by using the ceil function

 

Felipe_Ribeir0_1-1676316764509.png

 

 

Labels