Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Print one page sub report from subform

Status
Not open for further replies.

GooGoocluster

Technical User
May 12, 2005
71
US
I have been getting a lot of help from everyone here so I appreciate everyone’s help. I am so sorry for all the questions.

Here is my setup I have a form that looks like this sub forms under the main.

Main-Client
Sub-Project
Sub-Job ----> with button to print report

Report looks like this:

Main-Client
Sub-Project
Sub-Job

Is there a way to print the one page of the report that corresponds with Job = Job?

Again thanks for everyone’s help. My project is really coming together. Just wish I had VB so I can turn this into a program.
 
I think this is possible.. let me know if I can explain more. Also does anyone know of a good programing book for Access.
 
Is there a way to at least have it open to the current page of the report? Is this the right forum for this?
 
This is what I have in the main report that works

code:

Me.Filter = "Client = "" & Forms!ClientList!ClientName & """

Then when I put this in the subreport that is refering to the subform

Me.Filter = "Project = "" & Forms!ProjectSub!Project & """


this gives me an error saying "the setting you entered is not valid for this property.

When I look at the property it shows just the code rather then the value ("Project = "" & Forms!ProjectSub!Project & """).

As far as I can tell this should be right
 
And this ?
= "Project=Forms!ClientList!ProjectSub.Form!Project"

Hope This Helps, PH.
Want to get great answers to your Tek-Tips questions? Have a look at FAQ219-2884 or FAQ181-2886
 
Quotation marks (single and double) are tricky.

You have
Me.Filter = "Project = "" & Forms!ProjectSub!Project & """


Try
Me.Filter = "Project = " & "'" & Forms!ProjectSub!Project & "'"

w17
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top