T Tumby Registered User. Local time Today, 15:41 Joined Jan 12, 2009 Messages 64 Jan 16, 2009 #21 THANK YOU! THANK YOU! I know I did say print- sorry, But I do think it's best to see what is going to be printed before you actually print. Thanks again!
THANK YOU! THANK YOU! I know I did say print- sorry, But I do think it's best to see what is going to be printed before you actually print. Thanks again!
D dkinley Access Hack by Choice Local time Today, 17:41 Joined Jul 29, 2008 Messages 2,003 Jan 16, 2009 #22 Agreed. I always run the preview - never print blind. You are very welcome - awesome that it is going and you picked up some nuggets along the way! Good luck with your project. -dK
Agreed. I always run the preview - never print blind. You are very welcome - awesome that it is going and you picked up some nuggets along the way! Good luck with your project. -dK
S Simon_MT Registered User. Local time Today, 23:41 Joined Feb 26, 2007 Messages 2,170 Jan 19, 2009 #23 I have a Table for Sales Reports and use a form with fields Sales Report (ID) and a Textbox called Sales Report Desc which represents: =[Sales Report].[Column](1) Now that I have the Name of the Report I have two buttons Detail / Summary with separate functions to handle each: Code: Dim SalesReport As String SalesReport = .[Sales Report Desc] DoCmd.OpenReport SalesReport, acViewPreview, , SalesReports_Criteria Code: Dim SalesReport As String SalesReport = .[Sales Report Desc] & " Summary" DoCmd.OpenReport SalesReport, acViewPreview User can call different reports as code sets Sales Reports to the equilavent ID to their request. Simon
I have a Table for Sales Reports and use a form with fields Sales Report (ID) and a Textbox called Sales Report Desc which represents: =[Sales Report].[Column](1) Now that I have the Name of the Report I have two buttons Detail / Summary with separate functions to handle each: Code: Dim SalesReport As String SalesReport = .[Sales Report Desc] DoCmd.OpenReport SalesReport, acViewPreview, , SalesReports_Criteria Code: Dim SalesReport As String SalesReport = .[Sales Report Desc] & " Summary" DoCmd.OpenReport SalesReport, acViewPreview User can call different reports as code sets Sales Reports to the equilavent ID to their request. Simon