report about certain client

  • Thread starter Thread starter sue
  • Start date Start date
S

sue

I have a form to enter the information about the client.
Then I have a button to view the report about the scedule
of the client. The report I got is a report about total
clients. I only want to show the schedule of the client
whose form I was on. Any suggestions?
 
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Is there a id field on the form that uniquely identifies the record?
If so you can set the report's Filter property to something like this:

UniqueID = Forms!FormName!ControlName

If there is more than one field that uniquely IDs the record you can
include it in the Filter, like so (should be one line [line wraps]):

UniqueID1 = Forms!FormName!ControlName1 AND UniqueID2 =
Forms!FormName!ControlName2

HTH,

MGFoster:::mgf00 <at> earthlink <decimal-point> net
Oakland, CA (USA)

-----BEGIN PGP SIGNATURE-----
Version: PGP for Personal Privacy 5.0
Charset: noconv

iQA/AwUBQBF59oechKqOuFEgEQJhYwCguzOazxK0yUSdr+75l3pGO8ma/2sAnA5Z
4yHRrggaTAyqiPIkVVWo8UBI
=YC6E
-----END PGP SIGNATURE-----
 
Back
Top