Hey,
a report of mine suddently spits out "Type mismatch in expression" and I have no idea how to find the reason of the error.
The related query brings up the same error. I didn't create the query myself, it was somebody here helping me. Code for the query looks like this:
SELECT RTP.*, [Order Details].*, Employees.*, Suppliers.*, Department.Department AS dept, [GL Code].GLCode AS GLCDE
FROM [GL Code] INNER JOIN (Employees INNER JOIN (Department INNER JOIN (Suppliers INNER JOIN (RTP INNER JOIN [Order Details] ON RTP.OrderID=[Order Details].[RTP Number]) ON Suppliers.CustomerID=RTP.CustomerID) ON Department.DepartmentID=[Order Details].Department) ON Employees.EmployeeID=RTP.EmployeeID) ON [GL Code].GLCodeID=[Order Details].[GL Code];
It pulls information from several tables. So I had a look at the tables and I could not see anything that is out of line. It does not only happen with new records, but with old ones too.
Where can I start?![]()