I would like to be able to filter reports.
For example, I have thousands of records in a table but I only want the ones dated from 16/08/99 to 16/08/02.
Is this possible?
Cheers dude,
What about say invoice numbers?
Eg, I'm looking for all deliveries from invoices 303-025 to invoices 303-028.
Or as we have hundreds of Locations can you apply a filter so it shows just one location?
Eg, I'm looking for all delivereis to RAIL BOX EAST.
The "s come in automatically.
so the code goes from this:
WHERE Location = "'" & [Enter Location] & "'"
TO
"WHERE Location"="'" & [Enter Location] & "'"
Could this be a problem?
The fields are text fields.
Is it cAsE SeNsItIvE?
er... is this what you want?
SELECT [UPDATE:TESTINGMERGED].[Note No], [UPDATE:TESTINGMERGED].[Invoice No], [UPDATE:TESTINGMERGED].Date, [UPDATE:TESTINGMERGED].Location, [UPDATE:TESTINGMERGED].Equipment, [UPDATE:TESTINGMERGED].QTY, [UPDATE:TESTINGMERGED].Rate, [UPDATE:TESTINGMERGED].Total, [UPDATE:TESTINGMERGED].[Payment Cert], [UPDATE:TESTINGMERGED].Description
FROM [UPDATE:TESTINGMERGED]
WHERE (("WHERE Location"="'" & [Enter Location] & "'");
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.