Hi.
I just want to say first that Tek-Tips is the greatest things since sliced bread! I sure have learned a lot!
On a form I have 2 combo boxes - Sign1Type, and CSign1. Sign1Type gets it's data from a query, which in SQL
view is like this:
SELECT tblSigns_forwattageForms.[Sign ID], tblSigns_forwattageForms.Description, tblSigns_forwattageForms.[Face Size], tblSigns_forwattageForms.[Lighting Type], tblSigns_forwattageForms.[# Bulbs or Panels], tblSigns_forwattageForms.[# Faces], tblSigns_forwattageForms.[Total Wattage]
FROM tblSigns_forwattageForms
ORDER BY tblSigns_forwattageForms.[Item Number];
[Sign ID] is selected by the user in the Sign1Type combo box. I then want to place the [Total Wattage] data, from column 7 for the selected Sign ID, into the CSign1 combo box. I still haven't figured out the strSQL coding for vba yet.
Thanks in advance.
I just want to say first that Tek-Tips is the greatest things since sliced bread! I sure have learned a lot!
On a form I have 2 combo boxes - Sign1Type, and CSign1. Sign1Type gets it's data from a query, which in SQL
view is like this:
SELECT tblSigns_forwattageForms.[Sign ID], tblSigns_forwattageForms.Description, tblSigns_forwattageForms.[Face Size], tblSigns_forwattageForms.[Lighting Type], tblSigns_forwattageForms.[# Bulbs or Panels], tblSigns_forwattageForms.[# Faces], tblSigns_forwattageForms.[Total Wattage]
FROM tblSigns_forwattageForms
ORDER BY tblSigns_forwattageForms.[Item Number];
[Sign ID] is selected by the user in the Sign1Type combo box. I then want to place the [Total Wattage] data, from column 7 for the selected Sign ID, into the CSign1 combo box. I still haven't figured out the strSQL coding for vba yet.
Thanks in advance.