Home |
Search |
Today's Posts |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Les,
There's a few different ways to loop through your active cells. Here's one simple way of doing that..... Dim MyRow as long For MyRow = 1 to Range("A65536").End(xlup).Row 'Put your code in here 'use MyRow as your Row identifier ' For Example Cells(MyRow,1).Value = "Column A of Row MyRow" Next MyRow I hope this points you in the right direction. Allen |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
using a vlookup command in a for next loop in a macro in excel | Excel Discussion (Misc queries) | |||
VLOOKUP loop multiple times | Excel Worksheet Functions | |||
Need a vb loop for vlookup | Excel Programming | |||
Need a vb loop for vlookup | Excel Programming | |||
Find & Replace / Loop & Vlookup | Excel Programming |