D
Dennis
Using XL 2003 and 97
In another product (ACL) there is a function called Incude() which has the
following paramaters:
INCLUDE(string,characters_to_include)
INCLUDE( ) returns a string consisting of only those characters from string
that appear in characters_to_include, in the same order that they appear in
string.
Example also from ACL:
INCLUDE("123 any street","0123456789")
="123"
Or if Cell B1 contained A123B456C789 [Assuming XL had an Include() function]
INCLUDE("B1","0123456789")
="123456789"
In short, the function can pull all numeric information from a text
cell containing
mixed information.
Does XL and/or VBA for XL and/or anyone have any similar function that would
work in XL? If so, I would like to have knowledge of it.
If not, thoughts on how to create it?
TIA
Dennis
In another product (ACL) there is a function called Incude() which has the
following paramaters:
INCLUDE(string,characters_to_include)
INCLUDE( ) returns a string consisting of only those characters from string
that appear in characters_to_include, in the same order that they appear in
string.
Example also from ACL:
INCLUDE("123 any street","0123456789")
="123"
Or if Cell B1 contained A123B456C789 [Assuming XL had an Include() function]
INCLUDE("B1","0123456789")
="123456789"
In short, the function can pull all numeric information from a text
cell containing
mixed information.
Does XL and/or VBA for XL and/or anyone have any similar function that would
work in XL? If so, I would like to have knowledge of it.
If not, thoughts on how to create it?
TIA
Dennis