R
Russ
I have two combo boxes: "DayShift" and "NightShift". The
values are (1) and (2) for "DayShift", and (3) and (4)
for "NightShift.
What I'd like to see is if the value of (1) is selected in
combo box: "DayShift" I'd like for the only selection in
combo box: "NightShift" to be (4)
The same should be true for if "DayShift" value is (2),
the only available value in combo box "NightShift" should
be (3).
With that in mind my statment looks something like this:
IIf([Forms]![frm_RoboCoater_3_Rinse_Tank_Temperature]!
[cboDayShift]=1,4,3)
I have a "Me.cboNightShift.Requery" in the "cboDayShift"
AfterUpdate event procedure.
Now, When I select an "A" value in the cboDayShift combo
box, only a "C" shows up in the "cboNightShift" value
list, it should be a "D" or a "C" if the value selected in
the "cboDayShift" was a "B".
Any ideas for a solutions to this sticky issue?
values are (1) and (2) for "DayShift", and (3) and (4)
for "NightShift.
What I'd like to see is if the value of (1) is selected in
combo box: "DayShift" I'd like for the only selection in
combo box: "NightShift" to be (4)
The same should be true for if "DayShift" value is (2),
the only available value in combo box "NightShift" should
be (3).
With that in mind my statment looks something like this:
IIf([Forms]![frm_RoboCoater_3_Rinse_Tank_Temperature]!
[cboDayShift]=1,4,3)
I have a "Me.cboNightShift.Requery" in the "cboDayShift"
AfterUpdate event procedure.
Now, When I select an "A" value in the cboDayShift combo
box, only a "C" shows up in the "cboNightShift" value
list, it should be a "D" or a "C" if the value selected in
the "cboDayShift" was a "B".
Any ideas for a solutions to this sticky issue?