Combobox working on 1 form not on another

Chillendw

Registered User.
Local time
Yesterday, 19:54
Joined
Mar 1, 2017
Messages
38
So I'm a bit baffled and hoping that I can get some help.

Issue is that I'm able to get cascading comboboxes to work in 1 form but not on another, despite using the same vb.

After selecting a Factor (name), only the Lot Numbers associated with that Factor name should show up.

I've attached pictures to show how it works on 1 but not another; it just comes up blank. I've also attached the actual db.

I'm not sure what I'm doing incorrectly. I could just be overlooking something obvious since I've been staring at it for hours.

Thanks in advance.
 

Attachments

  • Screenshot (5885).png
    Screenshot (5885).png
    91.2 KB · Views: 88
  • Screenshot (5886).png
    Screenshot (5886).png
    84.8 KB · Views: 87
  • Factors_Vb.zip
    Factors_Vb.zip
    638.7 KB · Views: 58
It looks like an issue with combo box record source, check out this my solved issue about combo box record source.
 
You need a space after LotNumber:

cboLotNumber.RowSource = "SELECT LotNumber " & _
 
Happy to help!
 

Users who are viewing this thread

Back
Top Bottom