Yes. A bound textbox on the header only reads the first record in the detail section. The detail section loops through all records one at a time.
If you create a detail header, sort it, and then the detail header will read the first record in the detail section, which should be the sorted for value anyway.
If you want to send a value to the text box on the top of the form, then use an unbound text box and send the value from the detail section on format event like:
If me.cmp_etc Then
Me.txtBoxonHeader = "Something"
Else
Me.txtBoxonHeader = "Something Else"
End If
mmcdonal
|