LibreOffice 25.2 Help
Converts a positive integer to a specified base into a text from the numbering system. The digits 0-9 and the letters A-Z are used.
BASE(Number; Radix [; MinimumLength])
Number는 변환할 양의 정수입니다.
Radix indicates the base of the numeral system. It may be any positive integer between 2 and 36.
최소길이는 생성할 수 있는 문자의 최소 길이를 결정합니다. 만약 텍스트가 지정된 최소 길이보다 짧으면 문자열의 왼쪽에 0이 추가됩니다.(선택 사항)
=BASE(17;10;4)은 10진수 0017을 반환합니다.
=BASE(17;2)는 이진수 10001을 반환합니다.
=BASE(255;16;4)는 00FF 을 16진수로 반환합니다.