vba练习题-高亮
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vba练习题-高亮相关的知识,希望对你有一定的参考价值。
将B2:B101中大于500的数值用红色显示出来。
用循环找出>500的数值后再加粗和红色设置。
sub 高亮()
for i = 2 to 101
if cells(i,2).value > 500 then
cells(i,2).select
selection.font.bold=True ‘粗体
selection.font.colorindex = 3 ‘红色字体
end if
Next
end sub
以上是关于vba练习题-高亮的主要内容,如果未能解决你的问题,请参考以下文章