Topic: Boolean type in TableGrid

When I have a record in Boolean in the tablegrid it is as YES or NO
how can I change it ? For YES it should be let's say OK and for NO somethinh like Not OK ?

Re: Boolean type in TableGrid

You can do it using calculated field, example:

CASE WHEN boolfield = 1 THEN 'OK' ELSE 'Not Ok' END
Dmitry.

Re: Boolean type in TableGrid

Thank's