I am trying to determine how the following code determines where to put the output in an excel spread sheet. The VBA code is written:
I don't understand how the values inside the parentheses following "Range" designate the cell for "G/1000" to be returned in.
The output is in a do-while loop, and the character "j" increments by 1 each time, I am assuming to put the output in a cell one column over(?)after each loop.
Thanks for any help!
Code:
j=68
Range(Chr(j) + "22").Select
ActiveCell = G / 1000
I don't understand how the values inside the parentheses following "Range" designate the cell for "G/1000" to be returned in.
The output is in a do-while loop, and the character "j" increments by 1 each time, I am assuming to put the output in a cell one column over(?)after each loop.
Thanks for any help!