This is the line of code that's generating the formula,
worksheet.Cells(row, 13).R1C1Formula = "=R[" + CStr(row) + "]C[11]*R[" + CStr(row) + "]C[12]"
For the first time through the loop row = 3. So the expression evaluates to "=R[3]C[11]*R[3]C[12]". However, it converts this formula to "=Y7*Z7" instead of "=L4*M4".
At first I thought my freeze pane was causing the problem since I'm freezing 3 rows and the row was 3 off. However, turning it off had no effect. Also, I have no clue why the row is being sent way over to row Y.
Can someone help me figure this out?
Thanks,
Scott