Answered by:
Format Numeric 9(8)V99

Question
-
Experts -
I have a requirement to format a currency field in the above format. For example, the value $10783.05 would be formatted as 0001078305.
Any idea what the simplest way of working this into a query is?
Thank you!
Bonediggler
Friday, December 9, 2016 3:03 PM
Answers
-
I think it would be somewhat more efficient to use this:
Format([YourCurrencyField]*100,"0000000000")
Dirk Goldgar, MS Access MVP
Access tips: www.datagnostics.com/tips.html- Marked as answer by Bonediggler Monday, December 12, 2016 1:57 PM
Sunday, December 11, 2016 8:00 PM -
This seems to work:
Format(CStr(Replace([Amount],".","")),"0000000000")
Bonediggler
- Marked as answer by Bonediggler Friday, December 9, 2016 3:57 PM
Friday, December 9, 2016 3:57 PM -
First replace the dot with nothing. Then format the result with enough zeros to meet your requirements.
format(replace([myField],".",""),"0000000000")
Bill Mosca
www.thatlldoit.com
http://tech.groups.yahoo.com/group/MS_Access_Professionals- Marked as answer by Bonediggler Friday, December 9, 2016 3:58 PM
Friday, December 9, 2016 3:58 PM
All replies
-
This seems to work:
Format(CStr(Replace([Amount],".","")),"0000000000")
Bonediggler
- Marked as answer by Bonediggler Friday, December 9, 2016 3:57 PM
Friday, December 9, 2016 3:57 PM -
First replace the dot with nothing. Then format the result with enough zeros to meet your requirements.
format(replace([myField],".",""),"0000000000")
Bill Mosca
www.thatlldoit.com
http://tech.groups.yahoo.com/group/MS_Access_Professionals- Marked as answer by Bonediggler Friday, December 9, 2016 3:58 PM
Friday, December 9, 2016 3:58 PM -
I think it would be somewhat more efficient to use this:
Format([YourCurrencyField]*100,"0000000000")
Dirk Goldgar, MS Access MVP
Access tips: www.datagnostics.com/tips.html- Marked as answer by Bonediggler Monday, December 12, 2016 1:57 PM
Sunday, December 11, 2016 8:00 PM -
I think it would be somewhat more efficient to use this:
Format([YourCurrencyField]*100,"0000000000")
Dirk Goldgar, MS Access MVP
Access tips: www.datagnostics.com/tips.htmlBill Mosca
www.thatlldoit.com
http://tech.groups.yahoo.com/group/MS_Access_ProfessionalsMonday, December 12, 2016 3:12 PM -
First replace the dot with nothing. Then format the result with enough zeros to meet your requirements.
format(replace([myField],".",""),"0000000000")
Hi Bill,
I get wrong results with this function when myField is of type Currency, and not yet formatted to 2 decimal places.
Imb.
Edit: if the second decimal place is 0.- Edited by Imb-hb Monday, December 12, 2016 5:34 PM edit
Monday, December 12, 2016 5:33 PM -
First replace the dot with nothing. Then format the result with enough zeros to meet your requirements.
format(replace([myField],".",""),"0000000000")
Hi Bill,
I get wrong results with this function when myField is of type Currency, and not yet formatted to 2 decimal places.
Imb.
Edit: if the second decimal place is 0.Bill Mosca
www.thatlldoit.com
http://tech.groups.yahoo.com/group/MS_Access_ProfessionalsMonday, December 12, 2016 9:23 PM -
I think it would be somewhat more efficient to use this:
Format([YourCurrencyField]*100,"0000000000")
Dirk Goldgar, MS Access MVP
Access tips: www.datagnostics.com/tips.htmlI vote on Dirk Goldgar's answer due to the problems of reading number format instead of currency.
This will not show the actual number of decimal places.
Format(CStr(Replace([Amount],".","")),"0000000000")
$7.50 will be 0000000075
$15.00 will be 0000000015
But Dirk's version will place the 2 decimal points behind a number.
Dirk's version will be...
0000000750
0000001500
In other word, be careful with conversion. Someone might see $7.50 as $75.00 or as $0.75
Friday, December 16, 2016 9:23 AM -
I vote on Dirk Goldgar's answer due to the problems of reading number format instead of currency.
Hi AccessVandal,
That is also what I answered to Bill: the input value should have 2 decimals to give correct results.
That brings me also to a refinement of the answer of Dirk. As currency values "can" have 4 decimals, you could also add a rounding after the multiplication with 100. But this depends on whether this rounding (e.g. after percent calculations) is already done in some other part of the program.
Imb.
Friday, December 16, 2016 10:16 AM -
There's actually a flaw in my method, if the currency amount could exceed 99,999,999.99 . In that case, the output of the format function will have more than 10 character positions, and so will not conform to the 9(8)V99 specification. That's because Format() will automatically add the overflow digits.
For example, if the currency amount was $123,456,789.00, then we would get this in the Immediate window:
c = 123456789.00@ : ?Format(c * 100,"0000000000")
12345678900But "12345678900" is 11 digits, not 10.
To protect against this, without actually checking for the overflow, we could apply the Right() function to the output of the Format() function, like this:
c = 123456789.00@ : ?Right(Format(c * 100,"0000000000"), 10)
2345678900Of course, that loses the information that an overflow occurred. To capture that fact, one would have to use code along the lines of:
Dim formattedDigits As String
Dim overflowOccurred As BooleanformattedDigits = Format(currencyValue * 100,"0000000000")
If Len(formattedDigits) > 10 Then
formattedDigits = Right(formattedDigits, 10)
overflowOccurred = True
' or else raise an error
End IfDirk Goldgar, MS Access MVP
Access tips: www.datagnostics.com/tips.htmlFriday, December 16, 2016 4:59 PM -
As I said, This formatting is not practical unless the amount is strictly controlled so it is never more than 10 digits including the 2-place decimal. I can't think of a reason do do this as it is not necessary in either fixed-width or delimited output. But I'm sure Bonedigger has his/her reasons.
Bill Mosca
www.thatlldoit.com
http://tech.groups.yahoo.com/group/MS_Access_ProfessionalsFriday, December 16, 2016 5:57 PM -
Dirk,
It would not be a flaw if you use this method instead of "0" zeros.
Format(currencyValue * 100, "##")
Use the Hash symbol instead of "0" zeros.
That would solved the of left side numbers.
However, if the currency had 4-place decimals it will not work.
In most currency cases, 2-place decimals are more common. It's rare to see a value of less than 1 cent. Not a common practice that I know of.
- Edited by AccessVandal Monday, December 19, 2016 9:34 AM
Monday, December 19, 2016 8:48 AM -
Dirk,
It would not be a flaw if you use this method instead of "0" zeros.
Format(currencyValue * 100, "##")
Use the Hash symbol instead of "0" zeros.
That would solved the of left side numbers.
However, if the currency had 4-place decimals it will not work.
In most currency cases, 2-place decimals are more common. It's rare to see a value of less than 1 cent. Not a common practice that I know of.
Bill Mosca
www.thatlldoit.com
http://tech.groups.yahoo.com/group/MS_Access_ProfessionalsMonday, December 19, 2016 7:12 PM -
Bill,
It does and I have tested it. Works the same with Zeros.
My point is that the left side numbers are not a problem but the right side, 2 or 4 decimals is a problem if it is not define correctly a in record.
If you do this instead of the Right() function with the Left() and Len() function, you get the left side numbers correctly like....
Left(format_value, Len(format_value) - 2)
assuming a 2-place decimal currency.... say the fomated value is 12345678900, the output is 123456789, omitting the 00 which is the 2-place decimal.
You now use the Right() function to get the 2-place decimal ... Right(format_value, 2). From here, your code will concatenate the values with a correctly place decimal position.
Tuesday, December 20, 2016 1:33 AM -
Maybe I'm not testing properly. I tried using the hash marks like this:
format (1078305,"##########")
and format(1078305,"##")Result: 1078305
Using the zeros: format (1078305,"0000000000")
Result: 0001078305
That's why you must use the zeros in the string. And there never was an expressed possibility of 4 decimal places.
Bill Mosca
www.thatlldoit.com
http://tech.groups.yahoo.com/group/MS_Access_ProfessionalsTuesday, December 20, 2016 8:43 PM -
Bill,
I had remove the Replace() function and Dirk’s Multiplication from the existing reply. It’s my mistake to think that others might understand the code.
A single function alone would not work like this Format(CurrencyValue, “0”).
The reason is that Access removes the zeros behind the decimal point. Like….
123456789.00…….. you would get 123456789 without the zeros.
With Dirk’s code… Format(“123456789.00” * 100, “0”) you get 12345678900
Which is correct to as it places the decimal behind the last zero.
The confusion is the Format function by placing multiple zeros as a requirement which is not necessary for a currency value.
Dirk’s code might not work in some cases in a query or control but the method works if you know how and understood the concept.
In Controls, you might need to modify the code. You will need 2 Format() and 1 Replace() function. Example…
=Format(Replace(Format([ControlName],"#.00"),".",""),"0")
The trick is the inner Format() that will change the decimal behaviour. Since formatting with remove the decimal and zeros, the inner Format will place the decimal and the Replace() will remove the decimal with a blank. Thereby the outside Format(), you will get 12345678900.
Dirk’s code will also work as well.
=Format([ControlName] * 100, “0”)
You should get the same results as mention above.
Your method will also work but Dirk’s method is much simpler.
The overflow as describe by Dirk is not an error because currency value will always exceed the format digits requirements so long as you provide the actual decimal position when you need to revert back.
Come to think about it, Dirk’s code will tell you how many decimal places were in the formatting. Whatever the digits formatting requirements in currency are completely redundant but acceptable as it ignores the formatting when the value exceeds the format. You only need to know the decimal place required.
I understood your point for the 10 digits format requirement from OP. But humorously I say that not many of us will have a cash flow of 8 digits but large corporation or Government do go beyond 10 digits.
Wednesday, December 21, 2016 4:53 AM