Formatting currency to show cent symbol

L

L.A. Lawyer

I have to refer to a series of currency amounts (less than $1 each). I can
easily format them to show "$0.45"; is there any way to show that as 45
cents (using the cents symbol)?
 
L

Linq Adams via AccessMonster.com

The exyended ASCII for the cent symbol is 162, so entering in a textbox

Private Sub txtSmallChange_AfterUpdate()
Me.txtSmallChange = Me.txtSmallChange & Chr(162)
End Sub

Similar code could be used in other ways.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top