Hi all, I want to populate 2 combo box's with SQL query'd values, so i do it like so (Code, 39 lines) BUT........... Even though this works a treat, the combo box display all the duplicates aswell. e.g. [DEPOT] D,D,D,D,HHI,HHU,HHH,HHH,HHH,I,I,E,R,R,E I want e.g. [DEPOT] D,HHI,HHU,HHH,I,E,R e.g [STOCK] sdf6546,asd456,zxc123,lpo456,sdf6546,asd456,zxc123,lpo456 I Want e.g [STOCK] sdf6546,asd456,zxc123,lpo456 I've tried putting the DISTINCT after the SELECT but this wont work because i need to DISTINCT it AFTER i've query'd the recordset, otjherwise i wont get the results from the SQL staement i need. Does anyone know how to re-order this or add something to get the results Thanks Error#9