Questions:
1) Is the subform bound or UNbound?
2) If the subform is unbound, then you need to look up the value of [C1 Mean Value], perhaps using a DLookUp function, e.g.
="Mean=" & DLookUp("[C1 Mean Value]", "tblC2", "[Some Other Field] = " & Me.AnotherTextBox)
3) Why do you set the textbox value to be
="Mean=" & [C1 Mean Value]
instead of just having the LABEL say "Mean =" and having the TEXTBOX just set only to
=[C1 Mean Value]
Greg Serrano
Michigan Dept. of Environmental Quality, Air Quality Division
|