If I do as you suggest, does that make the field that I have just made to auto populate become a read only type field or a field that the user can not edit based off that criteria?
----- Chuck Wood wrote: -----
If I understand you correctly, you can:
1. Make the ControlSource of a combo box (cboA) on your
form tied to field A.
2. Make a text box (txtB) on your form that is unbound.
3. In the AfterUpdate event procedure in cboA, use a SQL
query like "SELECT FieldB FROM Table1 WHERE FieldA='" &
cboA & "'" to get the correct value from FieldB.
4. Set the text box txtB to the value from the SQL query.
-----Original Message-----
I have an Access 2002 database running off SQL 2K advance
server back end. Within this database I need to have
column A (example column or field A) upon selection of a
specific criteria have column B or field B become a
automatically filled column with whatever criteria I
specify. Basically making that field a field that can not
be edited based off the crieteria in field A otherwise you
can change it or modify for all other reason or choices.
So my question how do I do this in Access or SQL, which
ever is easier? Help!