randolphoralph
Registered User.
- Local time
- Today, 06:07
- Joined
- Aug 4, 2008
- Messages
- 101
I am trying to generate a query and have noticed that the Memo field Comments is being truncated at 255 characters.
I have searched and can not find a work around. I wanted to see if anyone else has run across this and knows of a possible workaround.
Here is my SQL for the query.
I have searched and can not find a work around. I wanted to see if anyone else has run across this and knows of a possible workaround.
Here is my SQL for the query.
Code:
SELECT Employee.[EmployeeUniqueID], Employee.[DateofWork], Employee.[Comments]
FROM Employee
WHERE (((Employee.[EmployeeUniqueID])=[Enter Employee ID:]) AND ((Employee.[DateofWork]) Between [Enter Start Date of Work:] And [Enter End Date of Work:]))
GROUP BY Employee.[EmployeeUniqueID], Employee.[DateofWork], Employee.[Comments];