Hello,
When I click on a Checkbox I want it to turn green, but it remains red.
I have imported my Excel file to Sharepoint. In Excel I have True and False beginning with a Capital letter. When I click in Powerapps on the Checkbox, the item gets updated in my Sharepoint List but with a small letter font true instead of True (maybe that is the problem?)
I used to have my source in Powerapps from Excel but I switched to Sharepoint. In Excel it worked.
Probably a small change in code but I can’t figure it out.
Thanks,
René
Checkbox:
CheckboxBackgroundFill If(ThisItem.Seen="True";Green; Red)
Default If(ThisItem.Seen= "False";false;true)
OnCheck Patch(Aircrafts;ThisItem;{Seen:true})
Text ThisItem.Seen


