Hi All
Michael M (thank you) wrote the original code for me and I'm trying to make a change
I want to replace a deleted formula in column C when I double click in a cell. (See formula below)
If Not Intersect(Target, Range("c:c")) Is Nothing Then
Target.Formula = "=IF(BS$2=""Fixture Type"",CL" & ActiveCell.Row & ,IF(BS$2=""Fixture Type+(DMXFP)"",CJ" & ActiveCell.Row & ))"
Target.Offset(1, 0).Select
End If
This is the result I am looking for if I double click in C3.
=IF(BS$2="Fixture Type",CL3,IF(BS$2="Fixture Type+(DMXFP)",CJ3))
When I click in C4, I need column Cl and CJ to be relative (CL4 and CJ4)
Thank you
Russ
Michael M (thank you) wrote the original code for me and I'm trying to make a change
I want to replace a deleted formula in column C when I double click in a cell. (See formula below)
If Not Intersect(Target, Range("c:c")) Is Nothing Then
Target.Formula = "=IF(BS$2=""Fixture Type"",CL" & ActiveCell.Row & ,IF(BS$2=""Fixture Type+(DMXFP)"",CJ" & ActiveCell.Row & ))"
Target.Offset(1, 0).Select
End If
This is the result I am looking for if I double click in C3.
=IF(BS$2="Fixture Type",CL3,IF(BS$2="Fixture Type+(DMXFP)",CJ3))
When I click in C4, I need column Cl and CJ to be relative (CL4 and CJ4)
Thank you
Russ