add blank value to a combo box (1 Viewer)

campo88

Registered User.
Local time
Today, 11:02
Joined
Nov 20, 2009
Messages
46
Hi

I have several combo boxes that uses a table as its values.

My last 2 combo boxes however need a blank value, which would be valid in this case. Can I easily insert a blank value to these combo boxes?

Thanks
 

pbaldy

Wino Moderator
Staff member
Local time
Today, 03:02
Joined
Aug 30, 2003
Messages
36,125
You can just let the user leave it blank, or use a UNION query to join the choices from the table with a blank (Null or "").
 

campo88

Registered User.
Local time
Today, 11:02
Joined
Nov 20, 2009
Messages
46
how do i do this union query?
 

campo88

Registered User.
Local time
Today, 11:02
Joined
Nov 20, 2009
Messages
46
Wooooaaah this is quite complicated for me. Can you help me write the code.

My row source type is a table/query and my row source code is:


SELECT ..............ORDER BY [Points].Option;

Can you tell me what I need to add to this code so I have a blank option available in my list?

Look forward to hearing from you.
 

Users who are viewing this thread

Top Bottom