I have a text field with different strings. I am trying to replace the first 2 characters of each string.
Specifically I want to replace "PT" with "m1"; "m1" with "m2"; "m2" with "m3" etc.
I have seen that there is a REPLACE and REPLACEREGEX function, which I would be interested in using, but can't seem to get either of them to work correctly. Could someone help?
Depending on how many variations there are, you might be better off creating a data mapping spreadsheet, that will list all variations of the original text against the 'desired value', then merge it with your dataset. Demo and explanation here: http://forums.visokio.com/discussion/2365
Omniscope has function LEFT(text, num_chars) that might be helpful to create a formula, but search/replace later might be inefficient, in case "PT" appears after the first 2 characters.