Return boolean field from Formula

I am checking a binary condition using a Formula field, and I would love to return the same graphical outcome as the Boolean field (a tickbox). Can I make that happen? Is it as simple as returning ‘TRUE’ or something like that?

I think it should be possible because I can replicate a Boolean field in a Formula field simply with

field(‘Boolean field name’)

Yes that should happen automatically if the type of the result obtained from a formula evaluates to be a boolean. You can see that for instance if you create a new formula field with the formula “true”: you should see the checkboxes.

Oh yeah

true

and

false

without the quotation mark return the checkbox, I should have guessed. Thanks!