循环语句怎么只msgbox第一个结果,帮忙看下代码
我现在用textbox在一个excel中用循环语句查找到了多个结果并进行显示了,怎么将textbox里查找的第一个数据进行msgbox输出呢?以下是我的代码,if后面是我用的条件,可以不用研究
For j = 1 To RCOUNT Step 1
If Cells(j, 2) >= Lane And Cells(j, 2) <= Lane + 8 And Cells(j, 4) >= P And Cells(j, 5) >= HPHR Then
aaA = aaA + " " + xlSheet.Cells(j, 1).Value & vbCrLf
End If
Me.Text1.Text = aaA