jackmanjls
Member
I want to have a nested 'for' loop that prints the results to sequential horizontal cells. It would look something like the following:
for x = 150 to 200 increment by 50
for y = 2% to 6% increment by 1%
z = (some calculation involving x and y)
print y and z to cells (see NOTE: below)
endfor
endfor
NOTE:
As the inner is processed the print of y will occur and then z will be printed. These will be printed in the same row. Once the print occurs the row will be incremented then the next y,z print will occur. In the end the results will look similiar to the following:
A B
1 2% val
2 3% val
3 4% val...etc.
for x = 150 to 200 increment by 50
for y = 2% to 6% increment by 1%
z = (some calculation involving x and y)
print y and z to cells (see NOTE: below)
endfor
endfor
NOTE:
As the inner is processed the print of y will occur and then z will be printed. These will be printed in the same row. Once the print occurs the row will be incremented then the next y,z print will occur. In the end the results will look similiar to the following:
A B
1 2% val
2 3% val
3 4% val...etc.