이 함수는 Google Sheets에서도 Excel과 동일하게 작동합니다 — 구문과 인수가 같습니다.
EVEN(number)The EVEN function rounds a positive number up and a negative number down to the nearest even integer. If the number is already an even integer, no rounding occurs.
=EVEN(1.5)결과: 2
Rounds 1.5 up to the nearest even integer, which is 2.
=EVEN(-3)결과: -4
Rounds -3 away from zero to the nearest even integer, which is -4.
No, it rounds away from zero to the next even integer.