C
Clif McIrvin
A2010, split .mdb, local copy of FE
Form bound to inner join query
Datasheet view
I'm *sure* I've done this before....
I'm getting an error when I click on the column auto-filter of one
field - and I've run out of ideas what to look for.
Error text:
Syntax error (missing operator) in query expression 'Mix ID'.
After I dismiss the error dialog, the auto-filter menu appears, without
the data value select list. The remaining filter options all work (at
least the ones I've tried).
I suspect possibly something has happened in the BE ... unfortunately
the oldest available backup on the file server throws the same error. I
tried several older versions of the FE; all threw the same error. The
error is happening on more than one workstation. I'm pretty sure I used
this auto-filter earlier this morning, without error. The column
(control)'s row source is [Mix Designs].[Mix ID].
Asking for trouble-shooting suggestions....
The form's bound query (several columns ...'d out for brevity):
SELECT [Concrete Tests].PlantID, [Concrete Tests].LotID, ...,
[Concrete Tests].MixID, ..., [Concrete Tests].CommentID,
[Mix Designs].[Mix Name], [Mix Designs].[Mix Description],
IIf([PlasticUnitWt]>0,([DesignWt]-[PlasticUnitWt])/[DesignWt]+0.06,Null)
AS AirContentUW, [Mix Designs].[Mix ID], Comments.Comment
FROM [Mix Designs] INNER JOIN (Comments RIGHT JOIN
[Concrete Tests] ON Comments.CommentID = [Concrete Tests].CommentID) ON
[Mix Designs].MixID = [Concrete Tests].MixID
ORDER BY [Concrete Tests].SampleDate;
Form bound to inner join query
Datasheet view
I'm *sure* I've done this before....
I'm getting an error when I click on the column auto-filter of one
field - and I've run out of ideas what to look for.
Error text:
Syntax error (missing operator) in query expression 'Mix ID'.
After I dismiss the error dialog, the auto-filter menu appears, without
the data value select list. The remaining filter options all work (at
least the ones I've tried).
I suspect possibly something has happened in the BE ... unfortunately
the oldest available backup on the file server throws the same error. I
tried several older versions of the FE; all threw the same error. The
error is happening on more than one workstation. I'm pretty sure I used
this auto-filter earlier this morning, without error. The column
(control)'s row source is [Mix Designs].[Mix ID].
Asking for trouble-shooting suggestions....
The form's bound query (several columns ...'d out for brevity):
SELECT [Concrete Tests].PlantID, [Concrete Tests].LotID, ...,
[Concrete Tests].MixID, ..., [Concrete Tests].CommentID,
[Mix Designs].[Mix Name], [Mix Designs].[Mix Description],
IIf([PlasticUnitWt]>0,([DesignWt]-[PlasticUnitWt])/[DesignWt]+0.06,Null)
AS AirContentUW, [Mix Designs].[Mix ID], Comments.Comment
FROM [Mix Designs] INNER JOIN (Comments RIGHT JOIN
[Concrete Tests] ON Comments.CommentID = [Concrete Tests].CommentID) ON
[Mix Designs].MixID = [Concrete Tests].MixID
ORDER BY [Concrete Tests].SampleDate;