Forum Discussion
kevmartin
Oct 19, 2019Copper Contributor
Search/Replace With Wildcard without changing the wildcard characters
Hello Brains Trust - I hope you can assist. I haven't been able to find the answer elsewhere. I'm trying to do a search/replace, using wildcards to locate the target, but in the replace part of t...
- Oct 19, 2019You can't use wildcards in the Replace box, but you could use a formula in another column, to add the pipe. Then, copy the formula results, and paste as values over the original data. (Make a backup of your file first)
For example, if there's only one # in the original data, use this formula, where the data is in cell B3:
=REPLACE(B3,FIND("#",B3)+4,0,"|")
Oct 19, 2019
You can't use wildcards in the Replace box, but you could use a formula in another column, to add the pipe. Then, copy the formula results, and paste as values over the original data. (Make a backup of your file first)
For example, if there's only one # in the original data, use this formula, where the data is in cell B3:
=REPLACE(B3,FIND("#",B3)+4,0,"|")
For example, if there's only one # in the original data, use this formula, where the data is in cell B3:
=REPLACE(B3,FIND("#",B3)+4,0,"|")
kevmartin
Oct 20, 2019Copper Contributor
Thank you - I think I can make that work 🙂