> I'm moving data inputted into a userForm to Form Fields in a word document
> and I need to multiply some of the data by 12 (because I'm going from
[quoted text clipped - 12 lines]
> the
> result by 12 before putting it in the form?
Do your type conversions explicitly, like this
.FormFields("txtAnnualGross1").Result = CStr(Val(WCInfo.txtMonthlyGross1) *
12)

Signature
Regards
Jonathan West - Word MVP
www.intelligentdocuments.co.uk
Please reply to the newsgroup
Keep your VBA code safe, sign the ClassicVB petition www.classicvb.org
Angyl - 02 Nov 2006 19:27 GMT
You rule...
> > I'm moving data inputted into a userForm to Form Fields in a word document
> > and I need to multiply some of the data by 12 (because I'm going from
[quoted text clipped - 17 lines]
> .FormFields("txtAnnualGross1").Result = CStr(Val(WCInfo.txtMonthlyGross1) *
> 12)