이 함수는 Google Sheets에서도 Excel과 동일하게 작동합니다 — 구문과 인수가 같습니다.
OCT2DEC(number)The OCT2DEC function takes an octal string and returns its decimal equivalent. It is useful for converting base-8 numerical data into standard base-10 format for calculations.
=OCT2DEC("17")결과: 15
Converts the octal value 17 to its decimal equivalent, which is 15.
=OCT2DEC(54)결과: 44
Converts the octal value 54 to its decimal equivalent, which is 44.
The number cannot contain more than 10 octal characters, and the most significant bit is the sign bit.
The function will return a #NUM! error if the input contains digits other than 0-7.