Hello
if my formula looks like this
then how can i Represent the above with below range
Thanks
Samd
if my formula looks like this
Code:
With ws
.Range("CU" & curRow).Formula = "=CT" & curRow & "-CI" & curRow & "-CJ" & curRow
End With
Code:
With ws
.Range("CU3" & ":CU" & lastRow).Formula = [COLOR=#ff0000][B]"=CT3" & ":CT" & lastRow & "-CI3" & ":-CI" & lastRow & "-CJ3" & ":-CJ" & lastRow[/B][/COLOR]
'Marked in red gave error
End With
Samd