One way to do this is to use a table of tips, VBA, DLookup, and your form's current and afterupdate events...
Option Compare Database
Option Explicit
Private Sub Form_AfterUpdate()
UpdateControlTips
End Sub
Private Sub Form_Current()
UpdateControlTips
End Sub
Private Sub...