概述
while语句
while cells(i,2) <> “”
可用来检查内容是否为空,来标记是否到尾巴了
Sub highlightquick()
Dim i As Integer
i = 2
While Cells(i, 2) <> "" '判断是否为空
If Cells(i, 2) > 500 Then '判断单元格的数值
Cells(i, 2).Font.Bold = True '用来加粗
With Cells(i, 2).Font '用来改字体颜色
.Color = -16776961
.TintAndShade = 0
End With
End If
i = i + 1
Wend '和开头的while呼应
End Sub
同样完成和上一篇一样的任务,这次用while循环
这里解决的是没有空行的情况,有空行的情况之后再谈
如果要判断一行中任一列不为空就执行,可以改为
While Cells(i, 2) <> "" or Cells(i, 3) <> ""
实际编程中用do while 更多
Sub highlightquick()
Dim i As Integer
i = 2
Do While Cells(i, 2) <> "" '判断是否为空
If Cells(i, 2) > 500 Then '判断单元格的数值
Cells(i, 2).Font.Bold = True '用来加粗
With Cells(i, 2).Font '用来改字体颜色
.Color = -16776961
.TintAndShade = 0
End With
End If
i = i + 1
Loop '和开头的while呼应
End Sub
求平均值
Option Explicit
Sub average()
Dim total
Dim count
Dim mean
Dim i
i = 2 : total = 0 : count = 0
Do While Cells(i, 2) <> "" '判断是否为空
total = total + Cells(i, 2) '求和器
count = count + 1 '计数器
mean = total / count '算均值
i = i + 1
Loop
Cells(4, 4) = mean
End Sub
双重循环
对二重表格进行运算
Option Explicit
Sub toKG()
Dim i, j
i = 2
If Cells(7, 9) = "磅" Then '判断是否能进行转换
Do While Cells(i, 1) <> "" '控制行
For j = 2 To 10 Step 1 '控制列
Cells(i, j) = Cells(i, j) / 0.45
Next j
i = i + 1
Loop
Cells(7, 9) = "千克"
End If
End Sub
最后
以上就是尊敬麦片为你收集整理的全民一起VBA基础篇第六课:While语句和多重循环while语句双重循环的全部内容,希望文章能够帮你解决全民一起VBA基础篇第六课:While语句和多重循环while语句双重循环所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复