JSL FOR loop to check values in cells and remove the 7th character if there is one
This snippet below is a portion of my script. At this point I have a data table and some of the cells on various rows have an extra special character in the 7th position...yeah weird dataset. Some don't. There are multiple rows and multiple columns, all of which can vary in count. So I'm using a FOR loop to check the value of each cell for each row and column then trim or remove the 8th charact...