简体   繁体   中英

Excel VBA Looping formula to change Range

I've written a code to manipulate data in L9 : DC9 , But now I need to repeat this for L10 : DC10 , L11 : DC11 and etc.. I've tried a For Next loop replacing the value in the range with Li:DCi and specifying ( i ) as 9 to 30 but I get an error. How can I make a loop for this function?

My current version of Excel is 2013

What you are looking for is a syntax like this

Sub LoopRows()
    Dim i As Integer
    For i = 9 To 30
        ActiveSheet.Range("L" & i & ":DC" & i).Interior.Color = RGB(100, 100, 100)
    Next i
End Sub

This example just formats the color of the cell in each row. Notice how I use the for-loop to create a looping range selection.

我建议使用Range("L9").Resize(21,50).Interior.Color = ..在一条语句中执行此操作。

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM