ReadEnumerateValue

Returns the value of a cell in an enumerated document.

Syntax

ReadEnumerateValue(enumeratedDocID, primaryKey, fieldName)
enumeratedDocID = is the enumerated document's unique ID
primaryKey = value of the primary key identifying the row whose value you want to read
fieldName = name of the field whose value you want to retrieve from the list

Remarks

Returns #ERR! in the event of an error.

Example

For the following enumerated document with a unique ID of ENUM0001:

Code (primaryKey)DescriptionPriceUnit of sale
WheelBicycle wheel€251
Screw5x45Ph5 x 45 Phillips-head screw€4.3050

ReadEnumerateValue("ENUM0001", "Screw5x45Ph", "Price") = "€4.30"
ReadEnumerateValue("ENUM0001", "Wheel", "Description") = "Bicycle wheel"

Classification

Qubes