I'm trying to pad a string with 0's to the left.The length of the output string should be 7. Here's my code :
inputstr = "38"
in = string(7 - Len(inputStr),0) & inputStr
msgbox in
I'm getting error Expected Statement Please help me Thank You
See Question&Answers more detail:os