Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法清除多个单元格的内容,但不改变单元格的背景/字体属性?
我目前正在使用Range("X").Cells.Clear,但它删除了我的背景颜色,我不想在每次清除时都“重新绘制”它。
Range("X").Cells.Clear
如果要清除内容但保留格式,则应使用ClearContents方法。
Worksheets("Sheet1").Range("A1:G37").ClearContents
您可以使用ClearContents。前任,
Range("X").Cells.ClearContents