我有一个有两列和“x”行数的表。
第二列是格式化文本,我想将其更改为无格式文本。
这样做的手动方法是:
选择第二列中的整个单元格»剪切»单击编辑»单击选择性粘贴»单击未格式化
这个想法是将未格式化的文本粘贴回它被剪切的单元格,然后向下移动到下面的单元格。
我真的很感激一些可以将其应用于表格第二列中的所有单元格的代码。
这是我的问题的解决方案。一个朋友有一段代码,我根据自己的需要进行了操作:
Sub CutAndPasteSpecialUnformatted()
Dim value As Variable
' Process every row in the current table. '
Dim row As Integer
Dim rng As Range
For row = 1 To Selection.Tables(1).Rows.Count
' Get the range for the rightmost cell. '
Selection.Collapse Direction:=wdCollapseStart
Set rng = Selection.Tables(1).Cell(row, Column:=2).Range
' For each, toggle text in rightmost cell. '
rng.Select
Selection.Copy
Selection.Delete
rng.Select
Selection.Style = ActiveDocument.Styles("Normal")
Selection.Delete
Selection.Collapse Direction:=wdCollapseStart
Selection.Range.PasteSpecial DataType:=wdPasteText
Next
End Sub