Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Limiting the number of decimal places in an unbound textbox

Status
Not open for further replies.

demon147

Technical User
Jun 29, 2001
30
0
0
CA
I want to limit the number of decimal places to 1 in an unbound text box but when I right click and choose properties and select decimal places to 1 the calculation still gives me all of the decimal places.


Help appreciated.

Thanks
 
Let's assume you're using the following to populate the text box:

=([Str1]*[Str2])

Change your formula to = format(([Str1]*[Str2]),"##.#")
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top