早教吧 育儿知识 作业答案 考试题库 百科 知识分享

excel2003怎么把英文字及数字找出及贴到到新列例如:A1B1ST12344tomissmart.ST12344.andheis.ST45674johnisstupid.ST45674.alsohe...ST22234maryislazy.ST22234.andshe.NAIfyoucanhelpmesolvethisproblem.怎样把B1中

题目详情
excel 2003 怎么把英文字及数字找出及贴到到新列
例如:
A1 B1
ST12344 tom is smart.ST12344.and he is .
ST45674 john is stupid.ST45674.also he ...
ST22234 mary is lazy.ST22234.and she.
NA If you can help me solve this problem.
怎样把B1中包含有ST及后面的5个位数字(固定) 找出并贴到 去A1 的列?
如果在B1找不到 出现 NA
pieceworm大大,
▼优质解答
答案和解析
不要na的
=MID(A1,FIND("ST",A1),7)
如果一定要显示na
=IF(ISERROR(MID(A1,FIND("ST",A1),7))=FALSE,MID(A1,FIND("ST",A1),7),"NA")