Just wondering, is there any equivalent in VBA to VB .NET\'s PadLeft and PadRight methods?
As of right now, whenever I want to take a string and make it a fixed leng
Since we generally pad on the left side, the Format() function is shorter, simpler:
Format(number, " ") Format(number, "00")