ComboBox list displays blank data entries - annoying!

Joined
Jun 12, 2008
Messages
9
Reaction score
0
I have a table I'm using for ComboBox list entries. Each column has a varying amount of fields (rows) utilized for their specific list.

The ComboBox which uses the column with the greatest amount of fields in the table has no problems, but every other ComboBox displays blank data entries. Aside from making a separate table for every single ComboBox, is there any way to prevent the ComboBox's list from displaying all those blank, useless fields?

Thanks in advance!
 
Joined
Jun 12, 2008
Messages
9
Reaction score
0
Got it.

In the Row Source field, include a WHERE clause. Here's an example of the syntax:


SELECT [CT & Optical Protocols].[CT Resolution] FROM [CT & Optical Protocols] WHERE [CT & Optical Protocols].[CT Resolution] Is Not Null;
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top