Run a macro containing code similar to the following (changing the names of
the formfields as necessary) on exit from each of the formfields that
contribute to the calculation:
With ActiveDocument
.FormFields("Text2").result = .FormFields("Text1").result *
.FormFields("Dropdown1").DropDown.Value
End With

Signature
Hope this helps.
Please reply to the newsgroup unless you wish to avail yourself of my
services on a paid consulting basis.
Doug Robbins - Word MVP
> Hi
> I want to have a calculated field that calculates its result from a field
[quoted text clipped - 9 lines]
>
> If you can help I would be greatful.
quovadis - 30 Apr 2006 03:52 GMT
> Run a macro containing code similar to the following (changing the names of
> the formfields as necessary) on exit from each of the formfields that
[quoted text clipped - 4 lines]
> .FormFields("Dropdown1").DropDown.Value
> End With
Thanks very much.