I have a combobox, unbound, which was created using the combobox Wizard. At the time, the table (Salary results) on which the combox is based held two columns: ID and DATA. The ID column was removed and the RowSource property changed from
SELECT [Salary results].[ID], [Salary results].[DATA]
FROM [Salary results]
ORDER BY [Salary results].[DATA];
to
SELECT [Salary results].[DATA]
FROM [Salary results]
ORDER BY [Salary results].[DATA];
and saved. When in FORM view, clicking on the combobox brings up a paramter box - [Salary results].[ID]:
and the rowsource has been changed to:
SELECT [Salary results].[ID] AS Expr1, [Salary results].[DATA]FROM [Salary results]ORDER BY [Salary results].[DATA];
I can't get Access to stop creating a
[Salary results].[ID] AS Expr1
even though there is no ID any longer and the rowsource was specifically designed to reflect the change.
What am I missing?
Thanks to all
SELECT [Salary results].[ID], [Salary results].[DATA]
FROM [Salary results]
ORDER BY [Salary results].[DATA];
to
SELECT [Salary results].[DATA]
FROM [Salary results]
ORDER BY [Salary results].[DATA];
and saved. When in FORM view, clicking on the combobox brings up a paramter box - [Salary results].[ID]:
and the rowsource has been changed to:
SELECT [Salary results].[ID] AS Expr1, [Salary results].[DATA]FROM [Salary results]ORDER BY [Salary results].[DATA];
I can't get Access to stop creating a
[Salary results].[ID] AS Expr1
even though there is no ID any longer and the rowsource was specifically designed to reflect the change.
What am I missing?
Thanks to all