J
Jason Seaver
Really peculiar problem - I've got a module that outputs a web page
based upon the results of a query, but the recordset I'm using is
returning some bad values. The procedure is pretty straightforward:
Rs.Open "[Placement Count All Sorted]",
CurrentProject.AccessConnection
Rs.MoveFirst
Do Until Rs.EOF
Placements(i, 1) = Nz(Rs!People)
Placements(i, 2) = Nz(Rs!Jobs)
.... but when I step through it, the values for Rs!People and what's
indicated when I open the query up in Datasheet view is different, and
the data is not that dynamic. This doesn't happen on every record,
but it does on approximately 340 out of 4900.
Admittedly, the query in question is complicated - it references other
queries about four layers deep - but I'm completely at a loss to why
the same query should come up with two different results.
based upon the results of a query, but the recordset I'm using is
returning some bad values. The procedure is pretty straightforward:
Rs.Open "[Placement Count All Sorted]",
CurrentProject.AccessConnection
Rs.MoveFirst
Do Until Rs.EOF
Placements(i, 1) = Nz(Rs!People)
Placements(i, 2) = Nz(Rs!Jobs)
.... but when I step through it, the values for Rs!People and what's
indicated when I open the query up in Datasheet view is different, and
the data is not that dynamic. This doesn't happen on every record,
but it does on approximately 340 out of 4900.
Admittedly, the query in question is complicated - it references other
queries about four layers deep - but I'm completely at a loss to why
the same query should come up with two different results.