I tried statement.openonly = 'T' and statement.openonly = true and neither of those seem to evaluate to true
a
ANHE
02/05/2021, 8:14 PM
@devread Checkboxes are tricky. What I've found works is to parse the string to all uppercase or lowercase.
<#if record.custbody_yourcheckboxfieldid?upper_case=="YES">
// do a thing
#else
// do something else
</#if>
I hope that helps!