T
tmk
I have fields in a word document template that I would like to allow the user
to fill in. Then with a button click, I would like to copy the data from
those fields that the user filled in to other areas (fields) on the same form
to be used as prompts for additional input. I can read the user inputs from
the initial bookmarked fields with the
dim x as string
ActiveDocument.Bookmarks("fred").select
x=Selection.text
I cannot see how to load another field with the x text
Something like :
ActiveDocument.Bookmarks("fred1").select
Selection.text=x
This removes the fred1 bookmark and the associated field.
to fill in. Then with a button click, I would like to copy the data from
those fields that the user filled in to other areas (fields) on the same form
to be used as prompts for additional input. I can read the user inputs from
the initial bookmarked fields with the
dim x as string
ActiveDocument.Bookmarks("fred").select
x=Selection.text
I cannot see how to load another field with the x text
Something like :
ActiveDocument.Bookmarks("fred1").select
Selection.text=x
This removes the fred1 bookmark and the associated field.