Oct 14, 2020 01:10 PM
Hi all.
Still learning the in’s and out’s of scripting, so please bare with me.
I have a linked field, called {project name} that produces a name based on a formula. The name has the following format:" text1 * text2 " - so two words separated by an " * ". I’d like to append the text and remove everything from the " * ". So the new text would just be “text1”
I can get this far: SUBSTITUTE({Project Name}, “*”, “”) - but this just removes the *, and not all the letters after. I think I’d need to use LEFT or RIGHT in some capacity, but that only looks at letter position?
Could someone please point me in the right direction?
Thanks
Solved! Go to Solution.
Oct 14, 2020 01:46 PM
Give this a try:
LEFT({project name}, SEARCH(" * ", {project name}) - 1)
That should work if the " * " formatting is always consistent.
Oct 14, 2020 01:46 PM
Give this a try:
LEFT({project name}, SEARCH(" * ", {project name}) - 1)
That should work if the " * " formatting is always consistent.
Oct 14, 2020 01:47 PM
Amazing! Exactly what I needed. Thanks for the help!