Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Right("00" & yourInteger, 3)
Function NumToChar(intValue, intLen)
NumberToChar = Right(String(intLen, "0") & intValue, intLen)
End Function
MsgBox NumToChar(5, 8)
MsgBox NumToChar(39, 3)