T
tobesurveyor via AccessMonster.com
Good Morning All,
I would like to begin by thanking all the MVPs that I have helped me with the
questions I have posted. They have really kept me going in the right
direction with the applications I write.
Being a novice, this may be a simple answer...
In code, I have a string variable pulled in from another source which is a
combination of numbers and letters. This string can be varying lengths
depending on the situation.
Example: 001914LT
FA193A
What I want to do is evaluate each digit of the string and assign a value to
it. For example:
In the "001914LT" I would have:
0 = 10
1 = 20
4 = 50
L = 500
T = 1000
What is the proper way to pull each digit out of the string?
Thanks again in advance,
Chris
I would like to begin by thanking all the MVPs that I have helped me with the
questions I have posted. They have really kept me going in the right
direction with the applications I write.
Being a novice, this may be a simple answer...
In code, I have a string variable pulled in from another source which is a
combination of numbers and letters. This string can be varying lengths
depending on the situation.
Example: 001914LT
FA193A
What I want to do is evaluate each digit of the string and assign a value to
it. For example:
In the "001914LT" I would have:
0 = 10
1 = 20
4 = 50
L = 500
T = 1000
What is the proper way to pull each digit out of the string?
Thanks again in advance,
Chris