Hi Graham,
Thanks for your help.
Got another question.
I have the following code and when the check box is selected the text is added to the doc and what I want to know is there a way of entering in the relocation amount, with say, a pop up input box at the end?
Sub chkRelocationAssistance_Click()
If Me.chkRelocationAssistance = True Then
FillBM "Relocation1", "You are eligible for financial assistance through the Relocation Policy, a copy of which is enclosed. On receipt please will you sign Appendix 1,2 and 3 policy and pass to your manager on your first day. The assistance will be capped at £; which will be tax free in line with HMRC(Her Majesty's Revenue and Customs) regulations."
FillBM "Relocation2", "You have been offered relocation assistance based on your particular circumstances and for this reason, we ask that you do not discuss this matter with your work colleagues and your absolute discretion is appreciated."
FillBM "Relocation3", "Relocation Policy"
Else
FillBM "Relocation1", ""
FillBM "Relocation2", ""
FillBM "Relocation3", ""
End If
End Sub
Thanks
Ross
|