I am trying to put a string into my formula (which I know would need double quotes). However the formula is already the cell value, please see the below.
Cel.Offset(0, 3).Value = "=""String "" & Cel.Offset(0, 3).Value"
The Cel.Offset(0,3).Value on the right hand side of the = sign is a formula that is already present in the cell. I am trying to break this up into 2 steps because the assembling of the formula also required variables, and the step would get rather complicated. I want Excel/VBA to recognize Cel.Offset(0, 3).Value on the right hand side as a formula, rather than a string. Does anyone have any suggestions? As expected, this currently errors out.
Cel.Offset(0, 3).Value = "=""String "" & Cel.Offset(0, 3).Value"
The Cel.Offset(0,3).Value on the right hand side of the = sign is a formula that is already present in the cell. I am trying to break this up into 2 steps because the assembling of the formula also required variables, and the step would get rather complicated. I want Excel/VBA to recognize Cel.Offset(0, 3).Value on the right hand side as a formula, rather than a string. Does anyone have any suggestions? As expected, this currently errors out.