Hi Jay,
The original docs are in RTF ... everything is Normal as a style (they are
SAS 9 output) but there is some formatting applied (mostly just bold to some
sections). When I copy everything over I keep everything (including tables
and bold in the appropriate places) but the font goes from 10 pt to 12 pt. I
tried copying the style from the old doc to the new one but that didn't seem
to work:
With ActiveDocument
.UpdateStylesOnOpen = False
.AttachedTemplate = "Normal"
.XMLSchemaReferences.AutomaticValidation = True
.XMLSchemaReferences.AllowSaveAsXMLWithoutValidation = False
End With
Application.OrganizerCopy Source:= strSource, Destination:= strDest, _
Name:="Normal", Object:=wdOrganizerObjectStyles
The source doc font size for normal is 10pt and the normal.dot font size is 12
Is there something I'm not doing correctly here?
> Does the text have any overrides - paragraph or character formatting on
> top of the 'normal' style?
> I guess you could loop through the paragraph ranges and remove
> overrides or apply the style of your choice?
> Or- do a s&r for the style/formatting ?