BASE |
BASE(number, radix [,min_length]) |
Returns the number converted into a text representation with the given base. |
number | The number you want to convert. |
radix | The base. |
min_length | (Optional) The minimum length. |
REMARKS |
* If "number" <= 0, then #NUM is returned. * If "number" > 2^53, then #NUM is returned. * If "number" is not as integer, it is truncated. * If "number" is not numeric, then #VALUE is returned. * If "radix" < 2, then #NUM is returned. * If "radix" > 36, then #NUM is returned. * If "radix" is not an integer, it is truncated. * If "min_length" < 0, then #NUM is returned. * If "min_length" > 255, then ?? * If "min_length" is not an integer, it is truncated. * If "min_length" is included, then leading zeros are added if necessary. * You can use the DECIMAL function to return the decimal number of a text representation of a number in a given base. * This function was added in Excel 2013. * For the Microsoft documentation refer to support.microsoft.com * For the Google documentation refer to support.google.com |
|
© 2024 Better Solutions Limited. All Rights Reserved. © 2024 Better Solutions Limited Top