Access reports

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

Guest

Is it possible to write text in access reports which has the ability to call
in field information.

ie denial date field....

want to have the following:
Your application has been reviewed and it does not qualify for exemption.
Starting (insert denial date automatically) you will be charge taxes.
 
Is it possible to write text in access reports which has the ability to call
in field information.

ie denial date field....

want to have the following:
Your application has been reviewed and it does not qualify for exemption.
Starting (insert denial date automatically) you will be charge taxes.

Using an unbound text control, set it's control source to:

= "Your application has been reviewed and it does not qualify for
exemption. Starting " & [denial date] & " you will be charge taxes."

Of course the [Denial Date] field must be included in the report's
record source.
 
Back
Top