|
[Quoted Text] > 1) how can i print a report specific to that one person only.. > 2) IF I CAN ACHIEVE THAT- WHAT IS IMPORTANT IS THE LONGEST FU TIME FOR THAT > PERSON..
-Answer 1 You will need two forms FormT1 SubFormT2
Place SubformT2 in FormT1 linking child and master fields IDNO (This will sort T2 by T1) Place a command button to open the report. Edit the properties of 'On Click" of the command button adding : , , "[IDNO=" & [IDNO] to the DoCmd.OpenReport stDocName, acPreview line
This will allow you to just send the current IDNO displayed on the form to the report.
To Select just the longest Follow Up time, you will need to make a select query for that report to select the largest time/data. I do not know that exact criteria format, but with a little trial and error you can figure it out.
Joseph Martinez
|