Grouping a report

  • Thread starter Thread starter Pedro
  • Start date Start date
P

Pedro

Hi everyone
I'd like, one of the grouping levels, to be a control wich has only 2
possible values : yes and no. When i'm done that report it shows me the
values 0 and -1 that means true and false. I'd like to show me "Result :
True" and "Result : False"
I think it's something like this : =" Result: " & [Concil Banco] Format
(True/False) but i know it's not this.
Can you help me please?
Regards
Pedro
 
Try:

="Result: " & IIf([Concil Banco],"True","False")

Make sure the name of the text box is not the name of a field.
 
Back
Top