M
Mark Kubicki
I have in the detail portion of a report a text box: txtDescription, which I
would like to have display one of the form's recordsource fields
[FullDescription] & [InstNotes] if another of the fields [Void] is FALSE,
and a constant "VOID" if [Void] is true
To achieve this, I've entered the following code (it doesn't work, and any
suggestions would be greatly appreciated. )
If VOID Then
Me.Description = "VOID"
Else
Me.Description = [FullDescription] & [InstNotes]
End If
....have also tried: Me.Description.ControlSource = "VOID", which did not
work either
thanks in advance,
mark
would like to have display one of the form's recordsource fields
[FullDescription] & [InstNotes] if another of the fields [Void] is FALSE,
and a constant "VOID" if [Void] is true
To achieve this, I've entered the following code (it doesn't work, and any
suggestions would be greatly appreciated. )
If VOID Then
Me.Description = "VOID"
Else
Me.Description = [FullDescription] & [InstNotes]
End If
....have also tried: Me.Description.ControlSource = "VOID", which did not
work either
thanks in advance,
mark