user1989898
user1989898

Reputation: 1

Formatting Decimal places in Access/MySQL

I have a database which is an access frontend with a MySQL backend.
In MySQL I have a table with a field set at 3 decimal places (10, 3), however does anyone know how I can display this field as 1 decimal place only in the fronend access, without altering the MySQL table formatting?

Upvotes: 0

Views: 384

Answers (1)

Daniele Armanasco
Daniele Armanasco

Reputation: 7451

In the TextBox of your Access form you should set the Format property to a numeric format and the property Decimal Places to 1. You will find these properties in the Format tabs of the property editor.

Upvotes: 3

Related Questions