Advertisement
Guest User

Word new line after table macro

a guest
Aug 14th, 2019
449
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. Sub new_line_after_table()
  2. '
  3. ' new_line_after_table Macro
  4. '
  5. '
  6.    Selection.InsertRowsBelow 1
  7.     Selection.Rows.ConvertToText Separator:=wdSeparateByTabs, NestedTables:= _
  8.         True
  9.     Selection.MoveLeft Unit:=wdCharacter, Count:=1
  10. End Sub
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement