|
By patvdv at 26 Feb 2008 - 21:57
|
table.round()
Syntax
void table.round( [field, field, ..., "table", "table", ...] )
Description
This rounds the values in certain tables and table fields according to parameters defined in the domain definition in the data dictionary.
Arguments
|
(no arguments)
|
The function rounds all fields of the main table.
|
|
field [, field] …
|
The names of one or more table fields. The function rounds the values in all specified fields.
|
|
table [, table] …
|
The names of one or more tables. The function rounds all fields in the specified tables. You must specify table names within quotes – for example, “tpctst999”.
|
Note
You can specify any combination of tables and fields, in any order.
Context
Bshell function.
Examples
table.round() | Rounds all fields of main table
table.round(pctst999.price, "tpctst888", pctst999.value)
| Rounds the two specified fields and all fields of the
| specified table
Related topics
|