SantasLittleHelper
Board Regular
- Joined
- Nov 25, 2016
- Messages
- 77
I have a calculated field with the following Expression:
The RecNo field is a regular autonumber field. I want the new calculated field to round the autonumber down to the nearest 100.
E.g.
[TABLE="width: 500"]
<tbody>[TR]
[TD]AutoNumber[/TD]
[TD]Calculated Field[/TD]
[/TR]
[TR]
[TD]78[/TD]
[TD]0[/TD]
[/TR]
[TR]
[TD]150[/TD]
[TD]100[/TD]
[/TR]
[TR]
[TD]399[/TD]
[TD]300[/TD]
[/TR]
[TR]
[TD]1542[/TD]
[TD]1500[/TD]
[/TR]
</tbody>[/TABLE]
With the current expression, I get #func ! error in each record
Code:
Round([RecNo],-2)
The RecNo field is a regular autonumber field. I want the new calculated field to round the autonumber down to the nearest 100.
E.g.
[TABLE="width: 500"]
<tbody>[TR]
[TD]AutoNumber[/TD]
[TD]Calculated Field[/TD]
[/TR]
[TR]
[TD]78[/TD]
[TD]0[/TD]
[/TR]
[TR]
[TD]150[/TD]
[TD]100[/TD]
[/TR]
[TR]
[TD]399[/TD]
[TD]300[/TD]
[/TR]
[TR]
[TD]1542[/TD]
[TD]1500[/TD]
[/TR]
</tbody>[/TABLE]
With the current expression, I get #func ! error in each record