Reporting checkboxes?

You can use a keychain expression. For example, to get a checked box when a number is even and an empty box when it’s odd, I can use the keychain expression @Number % 2 == 0 ? "☑": "☐" @ , assuming my table has a key called Number.checkboxes.proj (6.4 KB)

4 Likes