Hello,
I am trying to trim characters from the end of a string and nothing I'm doing is working. I either get no data in my output or an error.
I'm trying to trim 7 characters from the right hand side of a field. The field name is "Test Name" and just want to trim the dates from the end:
- Example
- Test Name
- This is my test 202308
- This is my test 202307
- This is my test 202306
I want to trim the dates so they're all alike so i can join them to other tables.
I've tried this from a previous community discussion but I'm not getting any results:
- left([Test Name], Length([Test Name]) - 7)
There are a total of 7 characters I'm trying to delete (6 for the date and 1 for the space at the end of the test name.)
Where am I off that I can't get this to work?
Thanks!