Okay I have an array that I want to replace the first character from the right with a blank. The code I tried didn't work and I was wondering if anyone could help me. I really don't want to store the information in a different array or element if possible.
For i = 0 to 48
For k = 1 to 4
Replace(Right(proparray(i,k), 1), " "
Next k
Next i
For i = 0 to 48
For k = 1 to 4
Replace(Right(proparray(i,k), 1), " "
Next k
Next i