Can you associate values from an Excel document that has been imported via the Excel importer with boolean values in the domain model?

0
Can you associate values from an Excel document that has been imported via the Excel importer with boolean values in the domain model?   In our Excel document we have values of Y and N which we would like to link to true and false booleans in Mendix
asked
1 answers
1

You can select a Microflow to handle the value in the import. On the template definition, select the field you want to import and create a microflow to translate the value from excel to the boolean.

When running the import it will use the microflow to translate the value to a boolean.

answered