simon551
IS-IT--Management
- May 4, 2005
- 249
Hi,
I'm getting a strange query result that I don't know how to resolve.
This is my query, it references a field on a form as a result in the query. I have done this type of thing before with some success but don't understand why it is giving this result:
query:
SELECT tblClasses.ClassID, tblClasses.ClassNum, tblClasses.GroupID, [Forms]![frmStudents]![txtEmpID] AS Emp
FROM tblClasses
WHERE (((tblClasses.GroupID)=[Forms]![frmStudents]![Major]))
ORDER BY tblClasses.ClassNum;
The result for field 'Emp' is coming back "+".
On the form it is clearly a numeric value. Very strange. I'm trying it in another query and the result is simply ". Arghh.
Thanks in advance for any help.
I'm getting a strange query result that I don't know how to resolve.
This is my query, it references a field on a form as a result in the query. I have done this type of thing before with some success but don't understand why it is giving this result:
query:
SELECT tblClasses.ClassID, tblClasses.ClassNum, tblClasses.GroupID, [Forms]![frmStudents]![txtEmpID] AS Emp
FROM tblClasses
WHERE (((tblClasses.GroupID)=[Forms]![frmStudents]![Major]))
ORDER BY tblClasses.ClassNum;
The result for field 'Emp' is coming back "+".
On the form it is clearly a numeric value. Very strange. I'm trying it in another query and the result is simply ". Arghh.
Thanks in advance for any help.