I have this working as intended using vba.
however...
was wondering if is possible to do within the combo box to have the default value be the highest(max value). The combobox row source is:
[tt]
SELECT DISTINCT mid([tblSurveyExtract_Course].[EventCode],2,2) FROM [tblSurveyExtract_Course] ORDER BY 1
[/tt]
and using the above when the combo box is clicked:
14
15
16
In this case, I would like 16 to be the default so that there is no need to select the value from the drop down, unless need to view a different number.
however...
was wondering if is possible to do within the combo box to have the default value be the highest(max value). The combobox row source is:
[tt]
SELECT DISTINCT mid([tblSurveyExtract_Course].[EventCode],2,2) FROM [tblSurveyExtract_Course] ORDER BY 1
[/tt]
and using the above when the combo box is clicked:
14
15
16
In this case, I would like 16 to be the default so that there is no need to select the value from the drop down, unless need to view a different number.