With "even", do you mean mathematically even numbers, i.e. divisible by 2,
like 0 2 4 6 ... or do you mean whole number, i.e. no fractional part,
like 0 1 2 3 4 ...
If you meant the later (BTW, "integer" *already* implies no fractional
part), and you always want to round UP, i.e. nearly the same as:
CEILING({+ve number}, 1)
in Excel, use the expression:
-Int(-[YourPositiveNumber])
If you have to handle -ve numbers, test to make sure that it handles -ve
numbers the way you want.