Hi
Im using data report to print reports.
I have a field that return 1 or 0.
But in report, must be appear "True" to 1 and "False" to 0.
How can i do it?
Thanks
Daniel
Printable View
Hi
Im using data report to print reports.
I have a field that return 1 or 0.
But in report, must be appear "True" to 1 and "False" to 0.
How can i do it?
Thanks
Daniel
You could define an Unbound string field. Then create a formula in which you check the value of your database field. If it 0 then you return False otherwise you return True.
Try it out and tell me it works! I have a similar problem but in a slightly different context. But, I`ll make another thread on that.Code:If {Table.Field} = 0 Then
"False"
Else
"True"