BASE(n,b,length)
n: integer
b: base (2 ≤ b ≤ 36)
length: minimum length of the resulting string
BASE converts n to its string representation in base b. Leading zeroes will be added to reach the minimum length given by length.
This function is OpenFormula compatible.