如何格式化Microsoft Access中的数字字段?

时间:2013-03-17 02:09:56

标签: ms-access formatting

我希望数字字段始终显示为3位数字。根据需要用0填充左边。

示例:3显示为003,24显示为024,依此类推。假设最大数量是999。

我该怎么办?感谢。

1 个答案:

答案 0 :(得分:1)

Function Lpad (Value as String, PadCharacter as String, PaddedLength as Integer)
    Lpad = string(PaddedLength - Len(Value), PadCharacter) & Value
End Function

Ref

Lpad("3", "0", 3)