Report Pull In field

K

Klatuu

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.
 
Top