"smartin" wrote in message
...
jknapp1005 wrote:
Bill Jelen wrote a book for VBA in Excel 2007. I guess he thinks I know
everything. He is writing things and not explaining what they are. All
the sudden he's writing section of macros that say things like:
FinalRow = Cells(Rows.Count, 1). End(xlUp).Row
For i = 1 to FinalRow
Range ("A" & i & ":E" & i).Font.Bold = True
Next i
without explaining what the heck "i" means. Try searching for the meaning
of "i" in any database.
I found one: http://mathworld.wolfram.com/i.html
The code is complex.
Are you NUTS? I is a variable to hold an integer value. Why make something
complex out of it?