E Echo_3 New member Local time Today, 18:11 Joined Aug 24, 2001 Messages 7 Jul 10, 2003 #1 I want to change: 203 to 2 1202 to 12 In other words, I want to drop the right two characters. Any ideas?
I want to change: 203 to 2 1202 to 12 In other words, I want to drop the right two characters. Any ideas?
stormin_norm Registered User. Local time Today, 13:11 Joined Apr 23, 2003 Messages 213 Jul 10, 2003 #2 Try this: Left (string,len(string)-2)
E Echo_3 New member Local time Today, 18:11 Joined Aug 24, 2001 Messages 7 Jul 10, 2003 #3 Thanks, that was it!