Hi @auswtz ,
Can you post your substring formula?
Without seeing your formula, I suspect your third parameter is causing an issue.
Substring takes in 3 parameters:
* Source string - the original piece of text
* Start index - the index/position where you want to start extracting from
* Length - the number of characters you want to extract (from the start index)
An example is below:
Apple
substring('apple', 1, 3) would return app
substring('apple', 2, 3) would return ppl
Check your length parameter isn't set to 1813 if your start index is greater than 1 because it will try to extract past the end of your text .
Try this online substring tester to plug in your values and test it out.
--------------------------------------------------------------------------
If I have answered your question, please mark my post as a solution
If you have found my response helpful, please give it a thumbs up
Connect on LinkedIn