Is it possible to modify the Row Source control of combo box (called cmbWO) on a form. I want to change the filter for the field SYSTEM (to either SAN or STO). I see how you can change the Record Source of a form but not sure about a specific fields Row Source on the form.
Example-
Click Button-A:
SELECT DISTINCT [WO_Number] FROM [taction] where [system] = "SAN" order by [WO_NUMBER];
Click Button-B:
SELECT DISTINCT [WO_Number] FROM [taction] where [system] = "STO" order by [WO_NUMBER];
Then open the form accordingly with the specified Row Source.
Thanks,
SKK
Example-
Click Button-A:
SELECT DISTINCT [WO_Number] FROM [taction] where [system] = "SAN" order by [WO_NUMBER];
Click Button-B:
SELECT DISTINCT [WO_Number] FROM [taction] where [system] = "STO" order by [WO_NUMBER];
Then open the form accordingly with the specified Row Source.
Thanks,
SKK