=BASE(number,radix,[min_length])
=BASE(13,2)
The BASE function can be used to convert numbers to text in a base from 2 to 36. For example, the formula converts the number 13 to text in base 2, which returns “1101â€.
=BASE(13,10)
The BASE function can also be used to convert numbers from base 10 (decimal) to other bases. For example, the formula converts the number 13 to text in base 10, which returns “13â€.
=BASE(13,16)
The BASE function can also be used to convert numbers to hexadecimal. For example, the formula > converts the number 13 to text in base 16 (hexadecimal), which returns “Dâ€.=BASE(3,2,4)
The BASE function can also be used to convert numbers to text with a specific width. For example, the formula converts the number 3 to text in base 2 with a width of 4, which returns “0011â€.
=BASE(10,16,4)
The BASE function can also be used to convert numbers from a base 10 to a base with a specific width. For example, the formula converts the number 10 to text in base 16 with a width of 4, which returns “000Aâ€.
The BASE function is used to convert a number into its text representation using a radix or base, ranging from 2 to 36.