The Community will be temporarily unavailable starting on Friday February 28. We’ll be back as soon as we can! To learn more, check out our Announcements blog post.
Jul 18, 2023 09:46 AM
This feels really silly but I can't get the LEFT, MID, RIGHT, functions to work with variables at all. It just keeps giving me an error no matter what I try. It works with a string in the function but not if I use a variable. Can someone tell me what I'm missing? I'm sure it's something simple...
//Formula that doesn't work:
LEFT({Text Phone}, 3) => #ERROR!
//Formula that does work:
LEFT("123456789", 3) => 123
Solved! Go to Solution.
Jul 18, 2023 09:54 AM
Hi @ssanto88, I think the issue is the source is a lookup field instead of a string or number. I just replicated the issue, and the solve was turning the lookup into a text string as follows:
LEFT(CONCATENATE({Text Phone}), 3)
Let me know if that helps!
Jul 18, 2023 09:54 AM
Hi @ssanto88, I think the issue is the source is a lookup field instead of a string or number. I just replicated the issue, and the solve was turning the lookup into a text string as follows:
LEFT(CONCATENATE({Text Phone}), 3)
Let me know if that helps!
Jul 18, 2023 10:45 AM
That did it, thanks for the help @CJSmith!