이 함수는 Google Sheets에서도 Excel과 동일하게 작동합니다 — 구문과 인수가 같습니다.
ISODD(number)The ISODD function evaluates a numeric value and returns TRUE if the number is odd, or FALSE if it is even. If the provided argument is not an integer, it is truncated toward zero before the check is performed.
=ISODD(3)결과: TRUE
3 is an odd number.
=ISODD(4.5)결과: FALSE
4.5 is truncated to 4, which is an even number.
The function will return a #VALUE! error if the input cannot be converted to a number.