Report Pull In field

  • Thread starter Thread starter Tim Eagle
  • Start date Start date
Probably easiest to do it in the query. In the field where you want a default
value, instead of the field name, change it to an expression:

ChkValue: IIf(Nz([MyField],"") = "", "Default Message", [MyField])

Then make ChkValue the control source for the text box on the report.
 
Back
Top