vba练习-while循环
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vba练习-while循环相关的知识,希望对你有一定的参考价值。
统计所有学生的平均成绩,当A列继续输入时,仍能统计。
Sub 统计()
Dim i, total, count
total = 0
count = 0
i = 2
Do While Cells(i, 1) <> ""
total = total + Cells(i, 2)
count = count + 1
i = i + 1
Loop
If count > 0 Then
Cells(3, 3).Value = total / count
End If
End Sub
以上是关于vba练习-while循环的主要内容,如果未能解决你的问题,请参考以下文章