This is confusing and I see no reason for this. But when I go to create a report of a query that has 31 records the first record is the only one that appears in the report.
When I run the query it works as expected, but when I go to create the report it doesn't present all the records except the very first one.
Now the second thing i don't understand is that a filter always appears every time I select query.
((Contact_Database.ContactDetailID=5))
contact_database is a table and contactdetail is a field in that table.
However I never set up such a filter! How did it create this? I've created the query twice now and still it always applies a filter. Why!?
Any ideas..I've checked the Sql and can't see anything
Here is the SQl for the query
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
SELECT superior1.ContactDetailID, Trim([SuperiorTitle] & "") AS [Position], superior1.SuperiorAddressTerm, superior1.SuperiorFullenvelopetitle, Trim([SuperiorOrderName] & "") AS OrderName, Trim([SuperiorNameofRelHouse] & "") AS [Rel House], superior1.SuperiorAidMemoir, superior1.HomeName, superior1.HomeNumber, superior1.HomeStreet, superior1.HomeCity, superior1.RegDisabled, superior1.[HomeCounty/state], superior1.[HomePostcode/ZipCode], superior1.Country, superior1.Email, superior1.MobilePhone, superior1.HomePhone, superior1.OfficePhone, superior1.Fax1
FROM superior1
WHERE (((Trim([SuperiorTitle] & "")) Like [forms]![superior]![searchsuperiortitle] & "*") AND ((Trim([SuperiorOrderName] & "")) Like [forms]![superior]![copied] & "*") AND ((Trim([SuperiorNameofRelHouse] & "")) Like [forms]![Superior]![copied2] & "*"));
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
I just don't get it, why hide my data and create random filters?
When I run the query it works as expected, but when I go to create the report it doesn't present all the records except the very first one.
Now the second thing i don't understand is that a filter always appears every time I select query.
((Contact_Database.ContactDetailID=5))
contact_database is a table and contactdetail is a field in that table.
However I never set up such a filter! How did it create this? I've created the query twice now and still it always applies a filter. Why!?
Any ideas..I've checked the Sql and can't see anything
Here is the SQl for the query
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
SELECT superior1.ContactDetailID, Trim([SuperiorTitle] & "") AS [Position], superior1.SuperiorAddressTerm, superior1.SuperiorFullenvelopetitle, Trim([SuperiorOrderName] & "") AS OrderName, Trim([SuperiorNameofRelHouse] & "") AS [Rel House], superior1.SuperiorAidMemoir, superior1.HomeName, superior1.HomeNumber, superior1.HomeStreet, superior1.HomeCity, superior1.RegDisabled, superior1.[HomeCounty/state], superior1.[HomePostcode/ZipCode], superior1.Country, superior1.Email, superior1.MobilePhone, superior1.HomePhone, superior1.OfficePhone, superior1.Fax1
FROM superior1
WHERE (((Trim([SuperiorTitle] & "")) Like [forms]![superior]![searchsuperiortitle] & "*") AND ((Trim([SuperiorOrderName] & "")) Like [forms]![superior]![copied] & "*") AND ((Trim([SuperiorNameofRelHouse] & "")) Like [forms]![Superior]![copied2] & "*"));
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
I just don't get it, why hide my data and create random filters?