Excel VBA:使用命名范围确定上次使用的行

时间:2017-06-22 12:13:47

标签: excel vba excel-vba

我想使用我创建的命名范围来确定范围内最后使用的行。

我是这样做的。

With ActiveSheet
    Dim textboxValue As String, lastUsedRow As Long
    textboxValue = UserForm.TextBox1
    lastUsedRow = .Range(textboxValue ).Rows.Count
    Cells(lastUsedRow).Select
End With

enter image description here 这就是工作表中的内容,因此最后使用的行应该是单词" No。"

enter image description here 但是所选择的最后一个使用的行是一个没有任何内容的单元格。

1 个答案:

答案 0 :(得分:0)

一种可能的方法是......

content_data = driver.FindElement(By.Id("content-data")).FindElements(By.TagName("text")).ToList();