Judy said:
Thank you for your repy. I actually want the space for one field to
display one of a choice of thirteen fields. For example, load the
amount for January if it is January, load the amount for February if it
is february, etc.
I think that's what I was suggesting. A single text box
control that can be used to "load" any of the fields in the
form's record source query. Let's say your VBA procedure
has determined the name of the field that you want to
display and the name of the field is in a string variable
named strFieldName e.g.
strFieldName = "January"
Then, you can display the value of that field in a text box
by using a line of code like:
Me.thetextbox.ControlSource = strFieldName
If you want to display a different field in the same text
box, just change its ControlSource to the other field name.
If that's not what you were describing, please elaborate
where these 13 fields are coming from and how you want to
display the value of one of them. Note, in discussions like
this, it is very important to make the distinction between
**controls** on the form and **fields** in a table/query. A
control can be used to display the value of a field, but a
control is not the field.