So I have a combobox with a 7 different options... I would like to autofill 4 bound combos with a specific value. I am not sure the SQL statement to handle it.
So far I have:
If [ThirdPartyID] <> "N/A" Then
cboJobBand.Rowsource = SELECT tblJobBands.JobBandID, tblJobBands.JobBandName FROM tblJobBands WHERE ((tblJobBands.JobBandName) = "3P"))
EndIF
Any suggestions?
So far I have:
If [ThirdPartyID] <> "N/A" Then
cboJobBand.Rowsource = SELECT tblJobBands.JobBandID, tblJobBands.JobBandName FROM tblJobBands WHERE ((tblJobBands.JobBandName) = "3P"))
EndIF
Any suggestions?