It does limit the query to 255 characters Here is the sql view
IT IS THE REMARKS SECTION AT ISSUE
SELECT Aviationtbl.NVGHours, Aviationtbl.Runningtotalaviagastotal,
Aviationtbl.Flight_Number, Aviationtbl.use, Aviationtbl.Flight_Duration,
Aviationtbl.[Flight Number], Aviationtbl.Runningtotalaviagastotal,
Aviationtbl.Date, Aviationtbl.[Aircraft ID Number], Aviationtbl.Hangar,
Aviationtbl.[Pilot Name], Aviationtbl.[Requested By ?], Aviationtbl.[Type
of
Mission], Aviationtbl.[Flight Location by County], Aviationtbl.Remarks
FROM Aviationtbl
GROUP BY Aviationtbl.NVGHours, Aviationtbl.Runningtotalaviagastotal,
Aviationtbl.Flight_Number, Aviationtbl.use, Aviationtbl.Flight_Duration,
Aviationtbl.[Flight Number], Aviationtbl.Runningtotalaviagastotal,
Aviationtbl.Date, Aviationtbl.[Aircraft ID Number], Aviationtbl.Hangar,
Aviationtbl.[Pilot Name], Aviationtbl.[Requested By ?], Aviationtbl.[Type
of
Mission], Aviationtbl.[Flight Location by County]
HAVING (((Aviationtbl.Date) Between [Enter Start Date] And [Enter Ending
Date]) AND ((Aviationtbl.[Aircraft ID Number]) Like "*" & [EnterAircraft
ID(OR LEAVE BLANK FOR ALL RECORDS)] & "*") AND ((Aviationtbl.[Pilot Name])
Like "*" & [Enter Pilot Badge # (OR LEAVE BLANK FOR ALL RECORDS)] & "*"));
Duane Hookom said:
There is virtually no limit to the number of characters displayed in a
text
box on a report. Please check your report's record source in datasheet
view
to see if you find more than 255 characters displaying in the query.
If the query is your issue, you can either remove "group by", "Distinct",
etc from the SQL or post your SQL view to us for more assistance.