I have the following code:
str=mid(s,2,len(s)-1)
fh4=trim(mid(str,21,15)) 'Part_No
pn=mid(fh4,1,5)&"-"&mid(fh4,6,5)&"-"&mid(fh4,11,5)
if right(pn,1)="-" then
pn=left(pn,11)
end if
the display will be: PT420-00045.
now I like to add a letter "E" to the out put disdlay
EPT420-00045
Thanks
str=mid(s,2,len(s)-1)
fh4=trim(mid(str,21,15)) 'Part_No
pn=mid(fh4,1,5)&"-"&mid(fh4,6,5)&"-"&mid(fh4,11,5)
if right(pn,1)="-" then
pn=left(pn,11)
end if
the display will be: PT420-00045.
now I like to add a letter "E" to the out put disdlay
EPT420-00045
Thanks