I have a database query that returns some string data in a column. I would like to trim this field based on whether a particular string exists in the data?
If the string contains a comma ",", I'm looking to return LEFT of that first comma If the string contains a hypen "-", I would like to return LEFT of that first hypen If the string contains neither, I would like to return the first 14 characters of the string?
I am headed in this direction at the moment:
StringHandling.LEFT(row1.DESCRIPTION,StringHandling.INDEX(row1.DESCRIPTION,"-"))
How can I include some logic to check for the comma or lack thereof and return the appropriate substring in my expression??
Thanks so much!