473,386 Members | 1,883 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,386 software developers and data experts.

VBA Function to loop through records on one table to query another

23
Ok, this is a tough one. I need to query “tblRawData” where “fldID” equals “fldLoop” in “tblLoop” and append the results into “tblResults”. If I were to do this exclusively in SQL, it would look something like this:

INSERT INTO tblResults ( FldID, SRCTNE, SRYRNE, SRSER2, SRFMLY )
SELECT FldID, SRCTNE, SRYRNE, SRSER2, SRFMLY
FROM tblRawData, tblLoop
where tblRawData.FldID = tblLoop.fldLoop;

Also, you can see this illustrated in my attached database in the “qryNormal” object.

Here’s where is get’s extremely difficult. The real “tblRawData” that I’m querying has over 6 million records, AND they are NOT indexed. Unfortunately there’s nothing I can do about that since I’m linking to an AS/400 table via ODBC. So this means Access/Jet will rad all 6 million recods to find the ones I want, which means it will time out long before it finishes pulling the data. So joining the tables in a simple query, like illustrated above, is not going to be possible for me.

Since “tblLoop” contains the values that I want to limit my search to in “tblRawData”, I can manually copy one value from “tblLoop” and paste it in my “where clause” as criteria for just querying “tblRawData” without the joins. When I do this, results are returned in a matter of seconds. This is illustrated in the “qryManual” in my attached database or see SQL below:

INSERT INTO tblResults ( FldID, SRCTNE, SRYRNE, SRSER2, SRFMLY )
SELECT FldID, SRCTNE, SRYRNE, SRSER2, SRFMLY
FROM tblRawData
WHERE FldID='001799'


I suppose that’s not a big deal when I only have 12 records in “tblLoop” to compare. But my real tblLoop could have up to 100,000 records (which isn’t as bad as 6 million, ha!). So needless to say, I want to avoid manually running an append query 100,000 times.

I think the solution lies within some sort of VBA function that will loop through “tblLoop” for “qryManual’s” where clause. If you see the attached Excel document how I have it diagrammed, it will make more sense. Also, I believe this is an example of what I’m trying to accomplish (see below), but it’s someone else’s query and code. I’m not sure how to make it work for my purposes, or if it’s what I need at all. Thanks for any help on this!!!

SQL
Expand|Select|Wrap|Line Numbers
  1. SELECT tbl_PIO_DATA.Series, LaborRate([Plant]) AS Labor, [Piocount]*LTSLookup([Vehicle],[PioCode])*LaborRate([Plant]) AS LaborTotal
  2. FROM tbl_PIO_DATA
VBA
Expand|Select|Wrap|Line Numbers
  1. Function LaborRate(Plant)
  2.  
  3.     Dim db As DAO.Database
  4.     Dim rec As Recordset
  5.  
  6.     Set db = CurrentDb()
  7.     Set rec = db.OpenRecordset("Lookup_LaborRate", dbOpenDynaset)
  8.  
  9.     rec.MoveFirst
  10.   While rec.EOF <> True
  11.     If rec!Plant = Plant Then
  12.         LaborRate = rec!Labor_Rate
  13.         rec.MoveLast
  14.     End If
  15.     rec.MoveNext
  16.   Wend
  17.  
  18. End Function
  19.  
  20. Function LTSLookup(Vehicle, PIOCode)
  21.  
  22.     Dim db As DAO.Database
  23.     Dim rec As Recordset
  24.  
  25.     Set db = CurrentDb()
  26.     Set rec = db.OpenRecordset("2007_LABOR_TIME", dbOpenDynaset)
  27.  
  28.     rec.MoveFirst
  29.  
  30.   While rec.EOF <> True
  31.  
  32.     If PIOCode = rec!CODE Then
  33.          If rec![Vehicle Code] = "*" Then
  34.             LTSLookup = rec!LTS
  35.             rec.MoveLast
  36.          ElseIf rec![Vehicle Code] = Vehicle Then
  37.             LTSLookup = rec!LTS
  38.             rec.MoveLast
  39.          End If
  40.     End If
  41.     rec.MoveNext
  42.  
  43.   Wend
  44.  
  45.  
  46. End Function
  47.  
  48. Function LTSExclude(Vehicle, PIOCode)
  49.  
  50.     Dim db As DAO.Database
  51.     Dim rec As Recordset
  52.  
  53.     Set db = CurrentDb()
  54.     Set rec = db.OpenRecordset("2007_LABOR_TIME", dbOpenDynaset)
  55.  
  56.     rec.MoveFirst
  57.  
  58.   While rec.EOF <> True
  59.  
  60.     If PIOCode = rec!CODE Then
  61.          If rec![Vehicle Code] = "*" Then
  62.             LTSExclude = rec!Exclude
  63.             rec.MoveLast
  64.          ElseIf rec![Vehicle Code] = Vehicle Then
  65.             LTSExclude = rec!Exclude
  66.             rec.MoveLast
  67.          End If
  68.     End If
  69.     rec.MoveNext
  70.  
  71.   Wend
  72.  
  73.  
  74. End Function
Attached Files
File Type: zip Example Files.zip (251.5 KB, 367 views)
Apr 6 '10 #1
7 10168
Lysander
344 Expert 100+
You don't have to do it manually, you could open tblLoop as a recordset and set up a loop
Expand|Select|Wrap|Line Numbers
  1. While not rsLoop.EOF
  2.   strSQL="INSERT INTO tblResults ( FldID, SRCTNE, SRYRNE, SRSER2, SRFMLY )"
  3.   strSQL=strSQL & " SELECT FldID, SRCTNE, SRYRNE, SRSER2, SRFMLY
  4. FROM tblRawData"
  5.   strSQL=strSQL & " WHERE FldID='" & rsLoop!fldLoop & "'
  6.  db.execute(strSQL);dbfailonerror
  7.  rsLoop.movenext
  8. WEND
  9.  
or something like that.
Apr 6 '10 #2
KPR1977
23
Lysander, thanks! I bet this will work. I created a function for it below but I'm getting an error on this line of code:
db.execute(strSQL);dbfailonerror

And it's asking me to define rsLoop (maybe because I have Option Explicit declared???). Anyhow, I'm a beginner with VBA, so I'm probably asking a real dumb question. Thanks for any ideas on how to make this work... =)
Expand|Select|Wrap|Line Numbers
  1. Public Function TestLoop()
  2.  
  3. While Not rsLoop.EOF
  4.   strSQL = "INSERT INTO tblResults ( FldID, SRCTNE, SRYRNE, SRSER2, SRFMLY )"
  5.   strSQL = strSQL & " SELECT FldID, SRCTNE, SRYRNE, SRSER2, SRFMLY " & _
  6.                     "FROM tblRawData"
  7.   strSQL = strSQL & " WHERE FldID='" & rsLoop!fldLoop & "' "
  8.  
  9.  db.execute(strSQL); dbfailonerror
  10.  
  11.  rsLoop.MoveNext
  12. Wend
  13.  
  14.  
  15. End Function
Apr 6 '10 #3
Lysander
344 Expert 100+
Wow, fast response, give a few seconds to check it out.

ok, me bad, I did not give all the info, did not realise you were new to VBA

oops, that should be a comma, not a semi colon. I'll constuct the full function, actually, it should be a sub as it is not returning a value, in Acces and post it in a few minutes

AND ALWAYS HAVE OPTION EXPLICT DECLARED, it can be a lifesaver.
Apr 6 '10 #4
Lysander
344 Expert 100+
ok, this compliles in Access 2003 but of course, I cant test it as I dont have those tables

Expand|Select|Wrap|Line Numbers
  1. Public Function TestLoop()
  2. On Error GoTo TestLoop_Err
  3. Dim rsLoop As Recordset
  4. Dim strSQL As String
  5. Dim db As Database
  6.  
  7. Set db = CurrentDb
  8. Set rsLoop = db.OpenRecordset("Select * from tblLoop;")
  9.  
  10. rsLoop.MoveFirst
  11. While Not rsLoop.EOF
  12.   strSQL = "INSERT INTO tblResults ( FldID, SRCTNE, SRYRNE, SRSER2, SRFMLY )"
  13.   strSQL = strSQL & " SELECT FldID, SRCTNE, SRYRNE, SRSER2, SRFMLY FROM tblRawData"
  14.   strSQL = strSQL & " WHERE FldID='" & rsLoop!fldLoop & "' "
  15.  
  16.   db.Execute (strSQL), dbFailOnError
  17.  
  18.  rsLoop.MoveNext
  19. Wend
  20. rsLoop.Close
  21. Set rsLoop = Nothing
  22. Set db = Nothing
  23.  
  24. TestLoop_Exit:
  25.    Exit Function
  26. TestLoop_Err:
  27.    MsgBox Err.Description & " in TestLoop"
  28.    Resume TestLoop_Exit
  29. End Function
  30.  
  31.  
Apr 6 '10 #5
KPR1977
23
I need to tell you the same thing I've told ADezii...please extend your hand and give yourself a great big firm handshake of appreciation from myself!!! Your code works great!!! It took about 15 minutes for it to run through 40,000 records in tblLoop. Thanks again!!! =)
Apr 6 '10 #6
Lysander
344 Expert 100+
Glad it worked and that I could be of help, its what this site is all about:)
Apr 6 '10 #7
KPR1977
23
I love this site!!!!
Apr 6 '10 #8

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

Similar topics

3
by: John Pastrovick | last post by:
I use a function, myrandomPIN (), to generate random PIN numbers. The following sql query updates records with the SAME PIN number but. I want to generate DIFFERENT pin numbers for every record....
12
by: jason | last post by:
Access 2000: I have a customer-inventory table I need to loop through and compile a list of all the inventory items the customer is tracking. The problem I am finding is that a simple loop...
20
by: Steve Jorgensen | last post by:
Hi all, I've just finished almost all of what has turned out to be a real bear of a project. It has to import data from a monthly spreadsheet export from another program, and convert that into...
6
by: Sven Pran | last post by:
Probably the answer is there just in front of me only awaiting me to discover it, but: 1: I want to build a query that returns all records in one table for which there is no successful "join"...
4
by: Kurt | last post by:
I'm using the fConcatChild function posted at http://www.mvps.org/access/modules/mdl0004.htm to return a field from the Many table of a 1:M relationship into a concatenated string. The function...
52
by: MP | last post by:
Hi trying to begin to learn database using vb6, ado/adox, mdb format, sql (not using access...just mdb format via ado) i need to group the values of multiple fields - get their possible...
5
by: marcsirois | last post by:
I have an SQL Query that looks like this. I simplified it for the purpose of this example, but it's still a runnable query SELECT TOP 1 FundedPositions.PositionNumber AS , (select top 1...
8
by: SaltyBoat | last post by:
Needing to import and parse data from a large PDF file into an Access 2002 table: I start by converted the PDF file to a html file. Then I read this html text file, line by line, into a table...
11
by: shriil | last post by:
Hi I have this database that calculates and stores the incentive amount earned by employees of a particular department. Each record is entered by entering the Date, Shift (morn, eve, or night)...
1
by: nrtyme | last post by:
Hello, I need to add several new records to Table2 from Table1. Table2 contains a field called that needs to be the previous maximum value of incremented by 1. Below is my code but i keep...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
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,...
0
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,...

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.