我希望数字字段始终显示为3位数字。根据需要用0填充左边。
示例:3显示为003,24显示为024,依此类推。假设最大数量是999。
我该怎么办?感谢。
答案 0 :(得分:1)
Function Lpad (Value as String, PadCharacter as String, PaddedLength as Integer)
Lpad = string(PaddedLength - Len(Value), PadCharacter) & Value
End Function
Lpad("3", "0", 3)