English Deutsch Français Italiano Español Português 繁體中文 Bahasa Indonesia Tiếng Việt ภาษาไทย
All categories

2007-02-19 05:37:25 · 3 answers · asked by pupsad33 1 in Computers & Internet Programming & Design

Obviously, I looking for a function to do that, because I need to use the value in some other place.

2007-02-19 05:49:15 · update #1

Obviously, I'm looking for a function to do that, because I need to use the value in some other place.

2007-02-19 05:49:54 · update #2

3 answers

The function you want is the ISNUMBER() function. Check the string one character at a time and write only the numbers to the result.

strTest = "ABC123"
strResult = ""

for x = 1 to len(strTest)
chrTest = mid(strTest(x,1))
If ISNUMBER( chrTest ) Then
strResult = strResult & chrTest
End If

2007-02-19 06:35:35 · answer #1 · answered by rod 6 · 0 0

Double click the form field, highlight the ABC and press "delete" on your keyboard. Not sure if that is what you wanted to do or not.

2007-02-19 05:46:50 · answer #2 · answered by Shauna 1 · 0 0

with ABC123 written in cell A1 and formula in B1 the formula would be =RIGHT(A1,3)

2007-02-19 05:51:56 · answer #3 · answered by gtvt06 1 · 0 0

fedest.com, questions and answers