Do you have a combobox on form for user to select well? Include APN as a column then expression in textbox can reference that column by its index. If APN is in third column, its index is 2.
=cbxWell.Column(2)
Another option is to include the combobox's RowSource lookup table in the form's RecordSource and bind textbox to APN field with its properties Locked Yes and TabStop No.
This is more efficient than DLookup() as Domain Aggregate functions in query and on form can slow performance, especially with large datasets.