custom format for boolean values

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I need to display boolean worksheet values not as TRUE or FALSE, but as "Y"
and "N" without the use of conditional formatting, macros or functions; a
custom format.

The custom format:
"Y";;"N";
works if the field value is numeric, but not for boolean expressions or
values.
 
Not possible unless you change the function that returns the TRUE or FALSE

Like if you have

=A2>5

change that to

=--(A2>5)

then use your custom format

"Y";;"N";
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top