A
anonymous
I'm trying to format the number of digits in a field, but
run into a problem when the digit is zero.
it returns '100' instead of '00'
Can someone help me with the right Statement?
here is an example of what I have:
SELECT (((Format(tblOccRep.occYy,"00")) & (Format
(tblOccRep.reportNo,"000")) & (tblOccRep.reportCodes))) AS
reportNo
FROM tblOccRep;
run into a problem when the digit is zero.
it returns '100' instead of '00'
Can someone help me with the right Statement?
here is an example of what I have:
SELECT (((Format(tblOccRep.occYy,"00")) & (Format
(tblOccRep.reportNo,"000")) & (tblOccRep.reportCodes))) AS
reportNo
FROM tblOccRep;