Hi, I am creating a simple tick box app and I am having trouble with getting the Yes/No answer back into SP List.
I have set up a connection between the two and I have also visually done what I need to do.
However, when the Yes/No answer is selected from the "EditForm1" and I've clicked the "Submit" button.
The Title and comment goes into the list, but the Yes/No answers do not. It is just blank.
Why is this? Any resolution to this?
Hi @FredatMaproom,
If the backend column is configured as a Yes/No field, you can utilize the true or false statements when employing the patch function. Please refer to the code snippet below for an example:
If(dropdown.Selected.Value = "Yes",true,false)
Best regards,
Ramanachiappan M
If my response was helpful, please select "Accept as solution" to close the item. Your thumbs up would be highly appreciated if you found it useful. Thank you!