J
John
I get the following error when I tried to run a report:
"Multi-level GROUP BY clause is not allowed in a subquery."
The report groups the records on a column called HaulerID. The
recordsource for the report contains the following:
Select *, (Select HaulerID From tblHaulers Where HaulerKEY =
TransHaulerKEY) As HaulerID From tblTransactions
If I get rid of the subquery (for HaulerID) I don't get the error. I
need the subquery since TransHaulerKEY is a foreign key and not a column
value. I don't know how to get around this problem. Can someone help me?
Thank You.
John
"Multi-level GROUP BY clause is not allowed in a subquery."
The report groups the records on a column called HaulerID. The
recordsource for the report contains the following:
Select *, (Select HaulerID From tblHaulers Where HaulerKEY =
TransHaulerKEY) As HaulerID From tblTransactions
If I get rid of the subquery (for HaulerID) I don't get the error. I
need the subquery since TransHaulerKEY is a foreign key and not a column
value. I don't know how to get around this problem. Can someone help me?
Thank You.
John