I’m reading data from a form (webhook) that provides fields with 1 or 0 depending if a box is checked. I need to give this to Google Sheets as TRUE or FALSE for checkboxes to work properly, but I can’t figure out how to use an expression to transform the value. I’ve looked up a few similar-ish forum posts but didn’t find anything useful.
Do you want the boolean true/false? Then you would have to use true or false.
or
Do you want the string TRUE/FALSE? Then you would have to use "TRUE" or "FALSE".
but TRUE or FALSE will not work.