B Bob V Jul 31, 2007 #1 Is it possible to align one column right then the next column left in a drop down list? Thanks for any ideas on this......Bob
Is it possible to align one column right then the next column left in a drop down list? Thanks for any ideas on this......Bob
S Scott McDaniel Jul 31, 2007 #2 Is it possible to align one column right then the next column left in a drop down list? Thanks for any ideas on this......Bob Click to expand... Not with native Access methods, no, but Stephen Lebans has a project that does this: http://www.lebans.com/justicombo.htm Scott McDaniel scott@takemeout_infotrakker.com www.infotrakker.com
Is it possible to align one column right then the next column left in a drop down list? Thanks for any ideas on this......Bob Click to expand... Not with native Access methods, no, but Stephen Lebans has a project that does this: http://www.lebans.com/justicombo.htm Scott McDaniel scott@takemeout_infotrakker.com www.infotrakker.com
G Guest Jul 31, 2007 #3 You can massage your fields like this --- SELECT Primary_Key, right(" "&[Primary_Key],7) &" "&left( [date open]&" ",11) FROM [Change Requests]; Column Widths 0"; 2"
You can massage your fields like this --- SELECT Primary_Key, right(" "&[Primary_Key],7) &" "&left( [date open]&" ",11) FROM [Change Requests]; Column Widths 0"; 2"