摘要:
查询语句: select 分数 from cfull join don c.姓名=d.姓名 报错: [Err] 1054 - Unknown column 'c.姓名' in 'on clause' 经测试: full join 报错, join,没问题, left join 没问题, right 阅读全文
摘要:
Function kaidan(txt)Dim i As IntegerDim arrSet d = CreateObject("scripting.dictionary")For i = 1 To Worksheets("汇-销").Range("a65536").End(xlUp).Rowarr 阅读全文
摘要:
要求:若A列满足值为c,则将b列对应的内容背景色调为红色,并提取出来: 代码如下: Sub naqu()Dim i As IntegerFor i = 2 To Range("a65536").End(xlUp).Row If Cells(i, 1) = "c" Then n = n + 1 Cel 阅读全文
摘要:
问题:提取check之后的数字 来源:Excelhome Sub 提取数字() Dim regexp As New regexp With regexp .Pattern = "check\s*(\d+)" End With With Worksheets("sheet1") r = .Cells( 阅读全文