View Single Post
  #2   Report Post  
Posted to microsoft.public.word.tables
Greg Maxey
 
Posts: n/a
Default How to delete multiple tables?

Yes, but you don't want to use it. If you change your mind:

Sub DeleteTables()
Dim oTbl As Word.Table
For Each oTbl In Selection.Range.Tables
oTbl.Delete
Next
End Sub


--
Greg Maxey/Word MVP
See:
http://gregmaxey.mvps.org/word_tips.htm
For some helpful tips using Word.


Á÷À˵ÄË«Óã wrote:
We can use Talbe/Delete/Talbe to delete a talbe.
But if we select multiple talbes, the command is
disabled. Is there any method to delelte multiple
tables at once? I dont want to use VBA.

Thanks in advance.