
Announcements
Hi guys,
So I've got a Typeform form created with a single select field type e.g. Please select your nationality (then have a dropdown that displays all the nationalities).
My question is that if I have a optionset field in Dynamics that maps directly to what's on the typeform question. How do I dynamically set the Dynamics 365 optionset value based on their field selection?
Hi @Mick282 ,
The first thing to note is that the OptionSet in CDS corresponds to an integer value.
triggerBody()?['form_response']?['answersObject']?['fieldid']?['value']['label']
You could test the trigger once and look at the fieldid recorded in Outputs.
variables('OptionSetValue')[outputs('SelectionValue')]
Image reference:
Best Regards,