R
Rob
I have a word table that has a cell containing a numerical value... I want
to add leading zeros to this value via a formula...
I am new to Word VBA, but I know that this can be done using Access VBA.
Apparently Word VBA <> Access VBA correct ?
Otherwise this should work....
Format$(Fieldname, "000000")
or
Right$("000000" & Trim$(Fieldname), 6)
Any Word Equivalents for these ?
to add leading zeros to this value via a formula...
I am new to Word VBA, but I know that this can be done using Access VBA.
Apparently Word VBA <> Access VBA correct ?
Otherwise this should work....
Format$(Fieldname, "000000")
or
Right$("000000" & Trim$(Fieldname), 6)
Any Word Equivalents for these ?