Conditional Picture Print

K

Kerry Purdy

Hiya

In my database I have a report printing joining istructions for delegates
attending training. If the training is at our training centre then I would
like to include the map and travel instructions. If the training is at a
partner site or client site then I do not want our TC Travel details to show.

Many thanks.

Kerry
 
A

Al Camp

Use the OnFormat event of whatever section your picture appears in.
You'll need some field value from your table to hang the logic on, such as [Site]

If [Site] = "Partner" Or [Site] = "Client" Then
YourPic.Visible = False
Elseif
YourPic.Visible = True
End If
 
Top