BrianFawcett
Registered User.
- Local time
- Today, 14:58
- Joined
- May 3, 2010
- Messages
- 63
I am trying to display two fields from a table in one drop down list on a report. I am getting the first field, but not the second. I created a query and copied it into the Row Source field in the properties box. Here is my SQL statement:
SELECT DISTINCT tbl_SupplierPricing.SupplierCode, tbl_SupplierPricing.SupplierName FROM tbl_SupplierPricing WHERE (((tbl_SupplierPricing.SupplierCode) Is Not Null) AND ((tbl_SupplierPricing.SupplierName) Is Not Null));
Can anyone help me out?
SELECT DISTINCT tbl_SupplierPricing.SupplierCode, tbl_SupplierPricing.SupplierName FROM tbl_SupplierPricing WHERE (((tbl_SupplierPricing.SupplierCode) Is Not Null) AND ((tbl_SupplierPricing.SupplierName) Is Not Null));
Can anyone help me out?