G
Guest
I have a table that lists letters A - M
Code Min Max
A 1 10,000
B 10,001 100,000
C 100,001 500,000+
other
I have a table that needs one of the letters. It also has 2 fields for min
& max depending on the letter chosen. I need to have the min/max fields
because if OTHER is chosen from the code box, the user needs to be able to
enter the min/max values for OTHER.
The form (data source being the table above) has a combo box to choose the
letter. The min & max text box control sources are Min & Max from the table.
The default value is Dlookup ("[Min]", "tblEstimate", "
Code Min Max
A 1 10,000
B 10,001 100,000
C 100,001 500,000+
other
I have a table that needs one of the letters. It also has 2 fields for min
& max depending on the letter chosen. I need to have the min/max fields
because if OTHER is chosen from the code box, the user needs to be able to
enter the min/max values for OTHER.
The form (data source being the table above) has a combo box to choose the
letter. The min & max text box control sources are Min & Max from the table.
The default value is Dlookup ("[Min]", "tblEstimate", "
Code:
=" & [Code]).
The default values never show up. I can only enter data in them.
What am I doing wrong?