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.
Function LPad(str As String, num As Long) As String
If Len(str) > num Then
LPad = Left(str & Space(num), num)
Else
LPad = Space(num - Len(str)) & str
End If
End Function
Function RPad(str As String, num As Long) As String
RPad = Left(str & Space(num), num)
End Function