gpt4 book ai didi

excel - 在vba问题中选择一行

转载 作者:行者123 更新时间:2023-12-01 06:51:02 29 4
gpt4 key购买 nike

我以编程方式在 VBA 中选择一行,但它给了我一个 TYPE MISMATCH 错误:

Rows(Str(i) & ":" & Str(i)).Select

我究竟做错了什么?
For i = 5 To 1000
If Worksheets("5470").Cells(i, 2) = "" Then
Rows(Str(i) & ":" & Str(i)).Select
Range(Selection, ActiveCell.SpecialCells(xlLastCell)).Select
Selection.Delete Shift:=xlUp
Exit For
End If
Next i

最佳答案

为什么不使用

Rows(i).Select

Afaik,行也可以按行号索引。

选择:
Cells(i, 1).EntireRow.Select

关于excel - 在vba问题中选择一行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4597651/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com