natemclain
Technical User
I was trying to figure out how to make a Row Source so that my users could select a name instead of the custID on a table. I got the names to show up in the combo box but when you select one I get a error because it is now trying to put text in a number field. And I can't change the field type because of my relationships. Can someone explaint o me how this is done. I have looked at the NorthWind DB and saw how they are doing it but I don't understand the SQL Statement. Can someone explain this statement to me??
SELECT DISTINCTROW [ShipperID], [CompanyName] FROM Shippers ORDER BY [CompanyName];
TIA
natemclain
SELECT DISTINCTROW [ShipperID], [CompanyName] FROM Shippers ORDER BY [CompanyName];
TIA
natemclain