View Full Version : displaying values


ADDI BOOGALOO
05-08-2001, 07:29 AM
i have made my report and in a text box i want to write in the control source:

surname where shift = morning


i want to display a surname where the shift field is equal to "morning"

KevinM
05-08-2001, 07:54 AM
OnFormat Event....
If [Shift]= "Morning" Then
[MyUnboundField]=[Surname]
End If

HTH