I am trying to take an entry and move it to the exact same path, just with one part of it changed to something else. The way I am trying to do it is to take the path and run the substitute function, replacing the old value with the new one. However, the \ character seems to prevent it from working properly.
If the path is \Clients\Test\OLD VALUE\Rest of path
If I insert "OLD VALUE" as the value to replace, it will not work because it immediately follows a backslash. Note that if I insert "\Clients" then that does work, but I think it's because that's the beginning of the string.
If I insert just "VALUE" then that works. Regardless, I've tried a whole bunch of ways to escape the backslash and nothing seems to work. I bet there's a simple solution to this. Would I be able to get assistance on this?
Thanks,