1 (edited by hichame 2016-11-28 13:37:26)

Topic: checkbox yes,no to true,false

hello.
how can i change text of checkboxes in mdv from yes,no to true,false. because in reprt,
checkboxes can not undrstand them. they only understand true or false.
thankyou

Re: checkbox yes,no to true,false

Hello.


You can change it by using calculated field.

Example:

case BoolField when 1 then 'True' when 0 then 'False' else '' end

Then just add this calculated field to your report.

Dmitry.

Re: checkbox yes,no to true,false

Thank you. very much smile