我正在使用以下 VBA 删除 T 列中没有 * 的所有行。它可以工作,但一次只删除 1 行。我必须运行 vba 25 次才能删除 T 列中没有 * 的 25 行。你看到代码有什么问题吗?
Sub DeleteCells()
'Loop through cells A1:A10 and delete cells that contain an "x."
For Each c In Range("t1:t35")
If c <> "*" Then c.EntireRow.Delete
Next
End Sub