Hi Guys,
this is my sql for the Row Source of a combo box:
SELECT [LOCATIONS].[LOCATION ID], [LOCATIONS].[LOCATION NAME] FROM LOCATIONS
UNION (SELECT '*' AS [LOCATION ID], 'All' AS [LOCATION NAME] FROM LOCATIONS)
ORDER BY [LOCATION NAME]
Any ideas why it doesn't work? Location ID is the field that filters the form and Location Name is what s displayed in the combo box.
this is my sql for the Row Source of a combo box:
SELECT [LOCATIONS].[LOCATION ID], [LOCATIONS].[LOCATION NAME] FROM LOCATIONS
UNION (SELECT '*' AS [LOCATION ID], 'All' AS [LOCATION NAME] FROM LOCATIONS)
ORDER BY [LOCATION NAME]
Any ideas why it doesn't work? Location ID is the field that filters the form and Location Name is what s displayed in the combo box.