473,756 Members | 8,110 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Need some Help

4 New Member
Ok I got a set of Forms Reports etc it goes like this
Reports Form Passes a Filter to the report for the needed results
The filter it passes along is fine except one problem
I need a way for the subreport to also be filtered by the same data

The main report name is Dayville Review Report and the subreport is Dayville Review subreport

Now all the info from the Form is passed into the vba environment for double checking when I was just using the main report its filters fine it still does for that I just can't get the subreport to filter I know I'm missing something
Expand|Select|Wrap|Line Numbers
  1. Option Compare Database
  2.  
  3. 'The Name of the Button on the Form that sends the data
  4. Private Sub Command10_Click()
  5.  
  6. Dim Filter As String
  7.  
  8. Filter = ""
  9.  
  10. 'Add date if only start date is filled in
  11. If IsNull(Me.txtEnd) And Not IsNull(Me.txtStart) Then
  12.     Me.txtEnd = Me.txtStart
  13.     End If
  14.  
  15. 'check if End Date > Start date
  16. If Me.txtEnd < Me.txtStart Then
  17.     MsgBox "Make sure your End Date is AFTER your Start Date", vbCritical, "Invalid Entry!"
  18.     Exit Sub
  19.     End If
  20.  
  21. 'Checks if the start date for the report is null or not
  22. If Not IsNull(Me.txtStart) Then
  23.     Filter = "[Date] between #" & Me.txtStart & "# AND #" & Me.txtEnd & "#"
  24.     End If
  25.  
  26. If Not IsNull(Me.txtBakco) Then
  27.          If Filter <> "" Then
  28.             Filter = Filter & " AND "
  29.         End If
  30.         Filter = Filter & "[Bakco Number] = " & Me.txtBakco
  31.     End If
  32.  
  33.  
  34. 'Check what areas the user wants the info for and adds it to the filter
  35. If Me.cboArea <> "All Areas" Then
  36.         If Filter <> "" Then
  37.             Filter = Filter & " AND "
  38.         End If
  39.     Filter = Filter & "[Area] = '" & Me.cboArea & "'"
  40.     End If
  41.  
  42. 'This is the part where it detect if its the report with the subreport in this case Dayville Review Report is report 0 in the index. the Subreport isn't in the index wasn't sure if that would help.
  43. If Me.cboReport = 0 Then
  44.  
  45. 'DoCmd.OpenReport "Dayville Review Subreport", acViewPreview, , Filter
  46. DoCmd.OpenReport Me.cboReport.Column(2), acViewPreview, , Filter
  47.  
  48. Exit Sub
  49. End If
  50.  
  51. DoCmd.OpenReport Me.cboReport.Column(2), acViewPreview, , Filter
  52.  
  53. Debug.Print Filter
  54. End Sub
  55.  
Most of this wasn't written by me I am just trying to work with it.

Also one option I guess would be to somehow change the query the subreport originally pulled its data from in this case that is called Dayville Accuracy Query
The current sql view of that looks like this

Expand|Select|Wrap|Line Numbers
  1. SELECT [Dayville Accuracy].Name, [Dayville Accuracy].Area, 
  2. [Dayville Accuracy].[Bakco Number], [Dayville Accuracy].Date, 
  3. [Dayville Accuracy].[Total Checked], [Dayville Accuracy].[Miss-Pick], 
  4. [Dayville Accuracy].BNR, [Dayville Accuracy].Over,
  5.  [Dayville Accuracy].Damage
The Bakco number field is the link between the two reports.

Thank you for your time
Apr 20 '07 #1
4 1666
MMcCarthy
14,534 Recognized Expert Moderator MVP
Your subreport needs to be tied to your main report. Look at the master child relationship or see if the subreport has a permanent filter attached.
Apr 21 '07 #2
Wook
4 New Member
Ok I'm still fairly new to access how would I apply the kind of filter I would need to it
Apr 21 '07 #3
Wook
4 New Member
As far as the parent child relationship goes I meant to say the Bakco Number was setup as such. That is why the report works fine if I limit the 2 queries by hand that the 2 reports draw from
Apr 21 '07 #4
Wook
4 New Member
After a lot of searching around and referencing various books I found my solution

I copied the Accuracy query to one called Review Query and make these changes.
Dayville Review Query
Criteria for Bakco Number = [Forms]![ReportForm]![txtBakco]
Criteria for Data= Between [Forms]![ReportForm]![txtStart] And [Forms]![ReportForm]![txtEnd]

Then I changed the source for the subreport to this
Dayville Review subreport
SELECT [Dayville Review Query].Name, [Dayville Review Query].[Bakco Number], [Dayville Review Query].[Total Checked], [Dayville Review Query].[Miss-Pick], [Dayville Review Query].BNR, [Dayville Review Query].Over, [Dayville Review Query].Damage FROM [Dayville Review Query];

Now when I enter the data into the form it correctly fitlers the right information
Apr 22 '07 #5

Sign in to post your reply or Sign up for a free account.

Similar topics

6
6328
by: mike | last post by:
Hello, After trying to validate this page for a couple of days now I was wondering if someone might be able to help me out. Below is a list of snippets where I am having the errors. 1. Line 334, column 13: there is no attribute "SRC" <bgsound src="C:\My Documents\zingwent.mids"> You have used the attribute named above in your document, but the document type you are using does not support that attribute for this element. This error is...
5
2193
by: John Flynn | last post by:
hi all i'm going to be quick i have an assignment due which i have no idea how to do. i work full time so i dont have the time to learn it and its due date has crept up on me .. As follows: Objectives The purpose of this assignment is to have you practice the design of object-oriented classes, including one or more of the following concepts
0
1839
by: xunling | last post by:
i have a question about answering ..... this topic is "need help" what do i have to write at te topic line, !after i have klicked the "answer message" button ive tried many possibilities, all dont work "Re:" need help "Re:need help"
9
2937
by: sk | last post by:
I have an applicaton in which I collect data for different parameters for a set of devices. The data are entered into a single table, each set of name, value pairs time-stamped and associated with a device. The definition of the table is as follows: CREATE TABLE devicedata ( device_id int NOT NULL REFERENCES devices(id), -- id in the device
7
3306
by: Timothy Shih | last post by:
Hi, I am trying to figure out how to use unmanaged code using P/Invoke. I wrote a simple function which takes in 2 buffers (one a byte buffer, one a char buffer) and copies the contents of the byte buffer into the character pointer. The code looks like the following: #include <stdio.h> #include <stdlib.h> #include "stdafx.h" BOOL APIENTRY DllMain( HANDLE hModule, DWORD ul_reason_for_call,
15
4638
by: Cheryl Langdon | last post by:
Hello everyone, This is my first attempt at getting help in this manner. Please forgive me if this is an inappropriate request. I suddenly find myself in urgent need of instruction on how to communicate with a MySQL database table on a web server, from inside of my company's Access-VBA application. I know VBA pretty well but have never before needed to do this HTTP/XML/MySQL type functions.
16
2538
by: pamelafluente | last post by:
I am still working with no success on that client/server problem. I need your help. I will submit simplified versions of my problem so we can see clearly what is going on. My model: A client uses IE to talk with a server. The user on the client (IE) sees an ASP net page containing a TextBox. He can write some text in this text box and push a submit button.
8
2750
by: skumar434 | last post by:
i need to store the data from a data base in to structure .............the problem is like this ....suppose there is a data base which stores the sequence no and item type etc ...but i need only the sequence nos and it should be such that i can access it through the structure .plz help me .
0
3961
by: U S Contractors Offering Service A Non-profit | last post by:
Brilliant technology helping those most in need Inbox Reply U S Contractors Offering Service A Non-profit show details 10:37 pm (1 hour ago) Brilliant technology helping those most in need Inbox Reply from Craig Somerford <uscos@2barter.net> hide details 10:25 pm (3 minutes ago)
20
4282
by: mike | last post by:
I help manage a large web site, one that has over 600 html pages... It's a reference site for ham radio folks and as an example, one page indexes over 1.8 gb of on-line PDF documents. The site is structured as an upside-down tree, and (if I remember correctly) never more than 4 levels. The site basically grew (like the creeping black blob) ... all the pages were created in Notepad over the last
0
9456
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9275
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10040
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
9873
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
9713
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
5142
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5304
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
3806
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
3
2666
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.