Hi My latest app has a few checkboxes, that i need the user to select yes or no in radio buttons,
However when i select no on the radio checkbox the value in sharepoint is not updating

the sharepoint columns are Yes/No (Default set to Yes)
The datacards settings are below
DEFAULT ThisItem.Amifittoperformcheck
UPDATE: AMIFITRADIO.Selected.Value = "Yes"
The Radio Buttons settings are
DEFAULT: Parent.Default
ITEMS: ["Yes", "No"]
Also im patching like this
If(Connection.Connected
,Patch('Take 5',
Defaults('Take 5'),
{Amifittoperformcheck : Value(AMIFITRADIO.Selected.Value) }
)
,Collect(COLLECTION,
{Amifittoperformcheck : Value(AMIFITRADIO.Selected.Value)
}
)
)
Im really confused?