<TBL>.RECALC_CALCFIELDS()

Syntax

<TBL>.RECALC_CALCFIELDS()

Description

The <TBL>.RECALC_CALCFIELDS() method recalculates the calculated field in a table. The calculated fields in a table are defined in Field Rules. Normally, as you enter and edit records in a table, the calculated fields are automatically recalculated. However, if you modify an Alpha Five table outside Alpha Five (e.g. by using a program that can read Alpha Five’s .dbf files), or by running some Alpha Five Operation (such as a Posting Operation), the calculated fields are not updated.

This method is the Xbasic equivalent of right clicking on the table in the Control Panel, and selecting Utilities > Recalculate Calc Fields.

Supported By

Alpha Five Version 5 and Above

Example

Dim tbl as P

Tbl = table.open("customers")

Tbl.recalc_calcFields()

Tbl.close()

See Also

Table Functions and Methods, A5_RECALC_CALC_FIELDS()