Hi,
I currently have this line of code in my VBA application:
Sheet2.Cells(row, 20).Formula = "=(Round( (RC[-3] /" & Sheet2.Cells(4, 10) & "),2))*100"
This produces:
=(ROUND( (Q12 /17.005),2))*100
I would like to replace the "Sheet2.Cells(4,10)" that places the value in the formula with the actual cell Reference (J4). I'm sure this is a very easy thing to do but for the life of me I can't figure it out. As you can tell I'm a newbie to VBA. Thanks in advance for your help.
Tony
I currently have this line of code in my VBA application:
Sheet2.Cells(row, 20).Formula = "=(Round( (RC[-3] /" & Sheet2.Cells(4, 10) & "),2))*100"
This produces:
=(ROUND( (Q12 /17.005),2))*100
I would like to replace the "Sheet2.Cells(4,10)" that places the value in the formula with the actual cell Reference (J4). I'm sure this is a very easy thing to do but for the life of me I can't figure it out. As you can tell I'm a newbie to VBA. Thanks in advance for your help.
Tony