Forum Discussion
QuickBaseCoachD
8 years agoQrew Captain
Like Excel, Quick Base calculates to many decimal places and in the display format you can set it to only show say 1 decimal place. But under the covers it retains all the decimals in a calculation.
If you want to round a calculated field to one decimal place you would use a format like this
Round([Hours] * [Rate],0.01)
That would, for example, round to the nearest .01 - penny)
You could also do, for example
Round([Qty Produced] / [Minutes]),0.1)
to round to the nearest tenth.
If you want to round a calculated field to one decimal place you would use a format like this
Round([Hours] * [Rate],0.01)
That would, for example, round to the nearest .01 - penny)
You could also do, for example
Round([Qty Produced] / [Minutes]),0.1)
to round to the nearest tenth.