Is there a way I can place the following SELECT clause:
SELECT Branch FROM tblBranches ORDER BY Branch
in a Row Source of a List Box and in addition ADD an additional SELECT value of ALL to the tail end of the list.
For example, let's say tblBranches.Branch has values of 101, 102, 103, 104 and 105. I want to allow the user to be able to select the following values:
101,102,103,104,105,ALL
SELECT Branch FROM tblBranches ORDER BY Branch
in a Row Source of a List Box and in addition ADD an additional SELECT value of ALL to the tail end of the list.
For example, let's say tblBranches.Branch has values of 101, 102, 103, 104 and 105. I want to allow the user to be able to select the following values:
101,102,103,104,105,ALL