摘要:
select riskcode,outriskcode,riskname,suppliercode,(select min(inputdate) from fccont where innercontno in(select innercontno from fcpol where riskcode 阅读全文
摘要:
我想在SHEET1里的C1单元格显示从SHEET2的A列里的数据表查找的100的数据的右边的值Private Sub CommandButton1_Click()With Sheet2.Columns("A:A")Set c = .Find(100, LookIn:=xlValues)Sheet1. 阅读全文
摘要:
Function isEng(ifEng As String) As Integer '判断是否英文 isEng = 0 With CreateObject("VBSCRIPT.REGEXP") .Global = True .Pattern = "[a-zA-Z]" If .test(ifEng) 阅读全文