Report - exporting to word - It will not export a check box value.

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I save a form as a report - there are a hundered check boxes...When I export
to WORD - everthing prints but the values in the chexk box. I even put some
code in the On format section to print an X if the value is true - This works
when I preview the report - but when I send to an RTF doc the X does not
print out? HELP please! THANKS>>>>
 
Yust change your checkboxes to unbound fields. In the source put an if
statement such as...

= IIF([SomeField], "X","")


Rick B
 
Back
Top