do while..loop

Sub while实例()
Dim rs%
rs = 2
Do While Cells(rs, 2) <> ""
If Cells(rs, 2) >= 90 Then Cells(rs, 3) = "good"
rs = rs + 1
Loop
End Sub

posted @ 2015-09-15 15:55  混混的IT生涯  阅读(185)  评论(0编辑  收藏  举报