I have a checkbox as part of a form. I can successfully tick it and the SharePoint list updates properly.
But if I open the form in edit mode, the checkbox always defaults back to unchecked - this is because it's preset as 'false'.
How do I get it to look up what's actually in the sharepoint list item? So if ticked, it should be true and remain ticked.
Normally with my other defaults, I use Parent.Default but this isn't an option for checkboxes.
I have also tried:
If(ThisItem.'Section 10 Checkbox'="True",true,false)
with no success.