How to change specific portion of a paragraph stored in excel file?

I have been tasked to manipulate specific words in a paragraph which is being stored in an excel file, I tried to use the Modify Text inside that I used Find and Replace option but instead of changing that specific portion of the text, it is changing the entire text.
How can I do that?
For reference here’s the current used snippet:
image

Hi @shreesh.bhardwaj_6

Can you try the below

CurrentRow("Message") = CurrentRow("Message").ToString.Replace("Name",CurrentRow("Name").ToString)

Regards,

@shreesh.bhardwaj_6

Here is your approach

Regards,

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.