T
Tom
Using Access 2002, have a combo box on a form and using:
SELECT DISTINCT tblOutput.Year
FROM tblOutput
WHERE (((tblOutput.Year) Is Not Null))
ORDER BY tblOutput.Year DESC;
as the record source. In the table we have the entries:
2005
2004
2003
yet what is seen in the combobox is:
2005.00
2004.00
2003.00
Any advise on how to correct this would be appreciated
TIA
Tom
SELECT DISTINCT tblOutput.Year
FROM tblOutput
WHERE (((tblOutput.Year) Is Not Null))
ORDER BY tblOutput.Year DESC;
as the record source. In the table we have the entries:
2005
2004
2003
yet what is seen in the combobox is:
2005.00
2004.00
2003.00
Any advise on how to correct this would be appreciated
TIA
Tom