Referencing Attributes

Attributes can be referenced only by attribute number, not by attribute name. This is different from the A code, where you can use either one. For example, if the number of items sold are stored in Attribute 5 and unit prices are stored in Attribute 2, the F correlative in the next command line can be used to derive the total amount of sale:

F ; 2 ; 5 ; *

It is not possible to type this as F ; N(QUANTITY) ; N(PRICE) ; *. You can, however, use the A correlative in the next command line to perform the same operation:

A ; N(QUANTITY) * N(PRICE)

See Also

F Code

Numeric Constants

Arithmetic Operators

Relational Operators

Applying Conversion Codes

Special Function Codes