I’m using Tamarac CRM, a solution built on Dynamics 365. We are trying to automate lead capture. One of my flows will create a lead in Tamarac when it receives a webhook from Active Campaign. This is working great except for one pesky field on the Lead record, Evaluate Fit. In the current Power Platform terminology, this (Managed) column is a Yes/no datatype, which I believe is a Boolean.
When I update the value of this column for a specific row through the MS UI (on the form, or as an input of type Yes/no for a flow), things work fine. But if I set the value of the column for a row in an update row flow step (either by selecting one of the choices or supplying a custom value), it appears to only affect the value and not the formatted value. So I see a situation like this in the output body:
"evaluatefit@OData.Community.Display.V1.FormattedValue": "Yes",
"evaluatefit": false,
How can I keep the FormattedValue and the actual value in sync? Is there an expression I can enter that will affect FormattedValue as well as the actual value?
I’d appreciate any insights…