Converting Enum to String

0
Hi, I have a Enum of 10 + values, I'd like to retrieve the selected value and convert in to String. could you pls let me know how to do that ?
asked
2 answers
3

Use getCaption($Entity/Enum) or getKey($Entity/Enum)

Also check: Enumerations in Microflow expressions

answered
1

If the enum is in a variable you can use getcaption($enumValue) otherwise if it is inside an object you can use getcaption($object/enumAttribute).

answered