Thread
:
Extract Certain character from string
View Single Post
#
2
Posted to microsoft.public.excel.programming
Glen[_5_]
external usenet poster
Posts: 31
Extract Certain character from string
Declare str1 as a string
Set str1 = 1164NB1 as your string value
then use the MID function:
MID(str1,4,2)
This will grab and return the 4th and 5th characters of your string
Reply With Quote
Glen[_5_]
View Public Profile
Find all posts by Glen[_5_]