我正在用 VBA 编写一个小分数查找程序,下面的代码在标题中给出了错误,我是 VBA 的新手,错误指向 Excel 本身生成的第一行。
Private Sub btnSearch_Click()
Name = txtSearch.Text
AmountOfEntries = Range("i10")
For i = 1 To AmountOfEntries
If Range("a" + i) = Name Then
cell = i
Else
cell = "Error"
End If
Next i
If cell = "Error" Then
lblScore.Caption = "Your Username is Incorrect. Please Try Again"
Else
lblScore.Caption = "Your Score Is : " + Range("b" + cell)
End If
End Sub
我的电子表格在“A”列中包含一个名称列表,然后在“B”列中包含一个分数列表。在“I10”中有一个字段包含列表中的条目数量。