I am trying to work with a string, and delete the last 2 characters. Normally the code would look like this:
delete char -1 to -2 of openprice
but that doesn't work, so I need to resort to doing this:
delete char -1 of openprice
delete char -1 of openprice
What is wrong here?