Exporting enumeration values to .xls

5
I would like to export enumeration values. The enumeration values are quite long, so I would like to export numbers instead of the enumeration captions. A simplified example is given below: Enumeration status: Open In progress Closed I would like to export '1' instead of 'Open', '2' instead of 'In progress' and '3' instead of 'Closed'. How can I do this?
asked
1 answers
3

You can do that with a virtual integer/string attribute. Split in the connected microflow of the attribute over the enumeration attribute and return the value you want. In your export don't use the enumeration attribute but the virtual attribute.

answered