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.
[COLOR=blue]Public Function specialformat(Expression As Variant) As String
Dim fmt As String
fmt = String(10 + Len(CStr(Int(Expression))), "0") & "E+"
specialformat = format(Expression, fmt)
End Function[/color]