Be the first user to complete this post

  • 0
Add to List

VBA Excel – Looping Through a Range of Cells

Referring Excel cells using For…Next -Loop

For i = 1 to 10

Range(“A” & i).Value = 1

Next

Enter ‘1’ in Cells from A1 to A10.

Referring Columns of excels using For-Loop

For i = 1 To 26

Range(Chr(65 + i) & "1").Value = 2

Next

Enter ‘2’ in cells from A1 to Z1

Referring Excel cells using For…Each…Next –Loop

For Each i In Sheet1.Range("H1:H5")

i.Value = 10

Next

Enter ‘10’ in Cells from H1 to H5.



Also Read:

  1. VBA-Excel: Create or Add Worksheets at the Run time.
  2. VBA-Excel: Date-Time Functions – TimeSerial() and TimeValue()
  3. VBA-Excel: Date-Time Functions – FormatDateTime()
  4. VBA Excel – Refer to Multiple Ranges : Union Method
  5. VBA-Excel: Create Array using Array() Function
  6. Getting Started with Excel Macro
  7. VBA Excel - Cells, Ranges and Offset : Offset
  8. VBA-Excel: Date-Time Functions – DateValue()