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) | Description | Price | Unit of sale |
| Wheel | Bicycle wheel | €25 | 1 |
| Screw5x45Ph | 5 x 45 Phillips-head screw | €4.30 | 50 |
ReadEnumerateValue("ENUM0001", "Screw5x45Ph", "Price") = "€4.30"ReadEnumerateValue("ENUM0001", "Wheel", "Description") = "Bicycle wheel"