change values of a report

mikela

Registered User.
Local time
Yesterday, 22:16
Joined
Nov 23, 2007
Messages
70
Hello,

i've got a report, and I need to change the value displayed for a field.

I mean: in my database i stored a boolean, so in the report it appears as -1,0, I would like it to change for some meaningful word, how can I do it dinamically???

Thanks!
 
Just use:

=IIf(Nz([YourFieldName])=0,"False","True")

Or use whatever words you want.
 

Users who are viewing this thread

Back
Top Bottom