I have a data like below:
A:B:C:D
and I want to replace the C
with data (say, Z
) so that it may look like
A:B:Z:D
How can I do it?
I have a data like below:
A:B:C:D
and I want to replace the C
with data (say, Z
) so that it may look like
A:B:Z:D
How can I do it?
If you have A:B:C:D in cell A1, then this works:
I know it's incredibly convoluted but it works.
EDIT: And to be clear, you'd replace "Z" with the data you want to add in.
=SUBSTITUTE(A1,"C","Z")
Although I wasn't clear on whether you wanted
G
orZ
, you mentionedG
but your example output showsZ
.