genuineblonde
Technical User
I am trying to concantenate two Integer values. I need the second to display leading zeros. How do I format?
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 LeadingZ(strInt as string,intDigits as integer) as string
LeadingZ = Right(String(intDigits,"0") & Ltrim(strInt),intDigits)
End Function