I have question on how to achieve column name 'ABC' has a value Butterflies | Props,
Hi @yeruvab
There are multiple ways to do this, one of them is to use a formula tool to substring the string.
Try the below formula :
'PRP:' + Substring([ABC], FindString([ABC],'|')+1,Length([ABC]))
.
@yeruvab One way of doing this
Trim(REGEX_Replace([Abc], '.*\|(.*)', 'PRP:$1'))
Thank you for your prompt reply, it worked
This worked like magic!! thank you so much
Thanks!
The data source is excel file and its not taking the empty cell as null.