I have the followingcode which works great, but I need it to work on a different field that iscalled “misc” and the information could be anything that is typed so what isever entered in this field I would like it to be placed in the proposal field.
Thank you Angie
Private SubApcoAir_AfterUpdate()
IfMe.ApcoAir = True Then
Me.ApcoAirPrice= "850"
Me.Proposal= Me.Proposal & vbCrLf & "Install Apco Air"
Else
Me.ApcoAirPrice= Null
Me.Proposal= Replace(Me.Proposal, vbCrLf & "Install Apco Air", "")
End If
Me.Refresh
End Sub