Skip to main content

Rounding up to the next Integer.

Comments

1 comment

  • Prajakta

    Try a business rule like:

    if(field1.value > 0) {
       field2.value = Math.ceil(field1.value);
    }
    0

Please sign in to leave a comment.