Customize Combo box Colum Heads?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Is there a way to customize the column headings in a combo/list box? The
current column headings are short and confusing and I'd like to give them
better names.

For example, current Column Name is ADD1. I'd like to use "Address" as the
column heading.

Thanks.
 
Use a query as the RowSource, and use alias names for the fields:

SELECT ADD1 AS Address, NameX AS EmpName,
ID AS EmpID
FROM YourTableName;

The alias names will appear in the combo box's header row.
 
Mcrawford said:
Is there a way to customize the column headings in a combo/list box? The
current column headings are short and confusing and I'd like to give them
better names.

For example, current Column Name is ADD1. I'd like to use "Address" as the
column heading.

Thanks.

In the Row Source, use AS to redefine the column names:

SELECT ADD1 AS Address, field2 AS name2, ...

Carl Rapson
 
Thanks to you both! That was almost too easy...

Carl Rapson said:
In the Row Source, use AS to redefine the column names:

SELECT ADD1 AS Address, field2 AS name2, ...

Carl Rapson
 

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

Back
Top