如何删除MS Word表格单元格内容但不删除单元格


7

我正在运行MS Word 2007.是否可以删除表的内容而不删除实际的单元格?我试过突出显示一堆细胞并击中 退格 按钮但使用此方法将删除单元格及其内容。


你正在做什么应该工作(见 删除表格或清除其内容 ),我无法重现你所描述的结果行为。
G-Man

@John,就像G-Man一样,我也无法重现这个问题。退格键将删除所有内容以及单元格,但删除键只删除内容。
Adam

Answers:


7

退格 可用于删除突出显示的表格单元格,而 删除 通常在上面的行中找到的键将清除突出显示的单元格的内容。


0

你总是可以使用Range(“A:A”)。ClearContents是一个例子

    # Split long col into 7 equal col
Sub SplitIntoCellsPerColumn()
Range("B2:H1894").ClearContents
  Dim X As Long, LastRow As Long, vArrIn As Variant, vArrOut As Variant
  LastRow = Cells(Rows.Count, "A").End(xlUp).Row
  numofrows = LastRow / 7
  numofrows_rundup = Round_Up(numofrows)
  vArrIn = Range("A1:A" & LastRow)
  ReDim vArrOut(1 To numofrows_rundup, 1 To Int(LastRow / numofrows_rundup) + 1)
  For X = 0 To LastRow - 1
    vArrOut(1 + (X Mod numofrows_rundup), 1 + Int(X / numofrows_rundup)) = vArrIn(X + 1, 1)
  Next
  Range("B2").Resize(numofrows_rundup, UBound(vArrOut, 2)) = vArrOut

  Range("A:A").ClearContents

End Sub


Function Round_Up(ByVal d As Double) As Integer
    Dim result As Integer
    result = Math.Round(d)
    If result >= d Then
        Round_Up = result
    Else
        Round_Up = result + 1
    End If
End Function

0
  1. 选择单元格
  2. 按住Shift键并按左键
  3. 按删除或退格键

Shift + Left应缩小选择范围,使其仅选择单元格内容而不选择整个单元格本身。


0

使用“删除”键而不是“退格”应该这样做。无论如何,在PC上。

如果您使用的是Mac,因此没有真正的“删除”键(Mac键盘上的“删除”键在功能上等同于PC上的“退格”键),您可以执行“fn +”删除“以达到预期的效果。


-1

清除表格单元格的内容后,样式格式可能仍然存在。根据表格单元格的样式,这可能会产生诸如轮廓编号之类的内容(例如,“1。”,“2。”,“A。”,“B。”,“I”,“II”等。 )仍然显示在表格单元格中,使表格单元格显示为空。

要清除样式,请选择要清除的表格单元格,打开样式 在功能区上展开样式按钮 功能区中的窗口,然后单击“全部清除” 明确所有选择样式列表

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.