I have a line where I want to create a formula in a cell as part of my macro and have developed this line.
Its meant to insert =L&i -J&i into the cell iM, where "i" is a row counter.
But for some reason this isnt working so was hoping someone could point out the error?
Its meant to insert =L&i -J&i into the cell iM, where "i" is a row counter.
Code:
Sheets("ClosedIssues").Cells(i, "M").Formula = "=""L""&i-""J""&i"
But for some reason this isnt working so was hoping someone could point out the error?