ドキュメント(Grammarly)でテキストチェックプログラムを実行する必要があり、すべてのテーブルを削除する必要があります。
どうすればいいですか?
https://www.extendoffice.com/documents/Word/1208-Word-remove-delete-all-tables.html が見つかりました。ここで、VBAを使用できます。
Sub Removetables ()
Dim oTable As Table
Each oTable In ActiveDocument.Tables
oTable.Delete
Next oTable
End Sub
だが Each oTable In ActiveDocument.Tables
実行するとエラーが発生します。 MacでMSWord2013を使用しています
For Each
にFor
がありません。
Sub Removetables ()
Dim oTable As Table
For Each oTable In ActiveDocument.Tables
oTable.Delete
Next oTable
End Sub