Expand Minimize
This topic has not yet been rated - Rate this topic

Options.PasteMergeFromXL Property (Word)

True to merge table formatting when pasting from Microsoft Excel. Read/write Boolean.

expression .PasteMergeFromXL

expression A variable that represents a Options object.

This example sets Microsoft Word to automatically merge table formatting when pasting Excel tables if the option has been disabled.

Sub AdjustExcelFormatting() 
 With Options 
 If .PasteMergeFromXL = False Then 
 .PasteMergeFromXL = True 
 End If 
 End With 
End Sub
Did you find this helpful?
(1500 characters remaining)

Community Additions

ADD
© 2013 Microsoft. All rights reserved.