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 SevenLeading(InNum As Long) As String
Dim NumStr As String
NumStr = Format(InNum, "0")
SevenLeading = Left("0000000", 7 - Len(NumStr)) & NumStr
End Function