Conditional Picture Print

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

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
 
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
 
Back
Top