Assuming you are trying to do a round up of SUM of an Amount field:
IF SUM.Amount GT 0 AND SUM.Amount NE INT(SUM.Amount) THEN INT(SUM.Amount + 1) ELSE INT(SUM.Amount)
In words: if the number is greater than 0 and is not an integer then add 1 and drop decimals, else just drop decimals.
1.2 -> 2
-2.3 -> -2
3 -> 3
#Db2#Support#SupportMigration