Conditional Formatting if Toggle = True

What’s wrong with my formula?

Booleans in Python are True and False. They’re displayed as true and false to look like JSON to match how other things are formatted. In any case, they’re different from strings. So these wouldn’t work either:

$Archived == "True"

or

$Archived == true

This would work:

$Archived == True

But you could just write:

$Archived

2 Likes