westicle47
Programmer
I often use the following code to move through rows on a spreadsheet, executing some other code at each row, and was wondering if there is a more simple or established way of performing this (not that it's that complicated).
Employee_Row = Employee_Row + 1
Cells(Employee_Row, 1).blah blah blah
Next blah
I vaguely remember in an introductory course on Java that you can use something like Employee_Row++ to perform the same function.
Thanks
Westie
Employee_Row = Employee_Row + 1
Cells(Employee_Row, 1).blah blah blah
Next blah
I vaguely remember in an introductory course on Java that you can use something like Employee_Row++ to perform the same function.
Thanks
Westie