1
我是一名vba初學者,我想要在所有行(201行)上添加1規則的腳本。While循環中的自動遞增變量
我的計數器i
,我想插入此i
的自動增量在我的工作表
我不知道爲什麼我不能插入一個變量?
Sub test()
Dim i As Byte
i = 2
While (i <= 202)
Range("Hi,Hi:Ji,Mi:Pi").Select '<--- insert my "i" here
Range("Mi").Activate '<---here
Selection.FormatConditions.Add Type:=xlCellValue, Operator:=xlNotEqual, _
Formula1:="=$G$i" '< ---here
Selection.FormatConditions(Selection.FormatConditions.Count).SetFirstPriority
With Selection.FormatConditions(1).Interior
.PatternColorIndex = xlAutomatic
.Color = 192
.TintAndShade = 0
End With
Selection.FormatConditions(1).StopIfTrue = False
i = i + 1
Wend
End Sub
thx爲你的幫助很大!祝你有美好的一天 ! – Skunk 2014-10-30 10:42:22