619access,
It is probably better to create a new thread and post when you have a topic that is new.
When you attach yourself to an older post, your post may just get lost.
I see you are new and this is post #1 so here are a few general comments.
Cells are a spreadsheet (Excel) term, not database. With database there are tables that contain fields. Data is stored in tables. Forms are like a window into the stored data. That is, the form is an interface through which data in a table(or query) can be exposed to the user. On a form are controls(not fields) that can be populated directly from tables, or some controls (such as a combobox) have their own rowsource.
Perhaps you could tell readers what you are trying to do in plain English and reduce the use of quasi-terminology (cells and drop downs..). Once readers understand the issue, then more focused responses and options will be forthcoming.
The rowsource for a combobox can be a query with an alphabetic sort on Name, such as
Code:
SELECT CAS, CompoundName from YourTableName
Order By CompoundName
Good luck.