Hi all.
I have a column which has data like the row below:
not in the system - A Random Client Name
What I'm trying to do is to is to use a function that will skip an x number of characters.
Like LEFT function
LEFT ([Field1], 20) ==> Gets first 20 characters. I need something that skips the first 20 characters.
Any ideas?
Solved! Go to Solution.
Hi @soncoku,
I think you are looking for substring!
Substring(String,start,length)
Please mark as soled if this was helpful!