ExcelHome技术论坛

 找回密码
 免费注册

QQ登录

只需一步,快速开始

快捷登录

搜索
EH技术汇-专业的职场技能充电站 妙哉!函数段子手趣味讲函数 Excel服务器-会Excel,做管理系统 效率神器,一键搞定繁琐工作
HR薪酬管理数字化实战 Excel 2021函数公式学习大典 Excel数据透视表实战秘技 打造核心竞争力的职场宝典
让更多数据处理,一键完成 数据工作者的案头书 免费直播课集锦 ExcelHome出品 - VBA代码宝免费下载
用ChatGPT与VBA一键搞定Excel WPS表格从入门到精通 Excel VBA经典代码实践指南
查看: 6358|回复: 19

[求助] 如何检查一个未打开的工作簿是否存在某张表?

[复制链接]

TA的精华主题

TA的得分主题

发表于 2014-4-9 12:01 | 显示全部楼层 |阅读模式
各位大侠:
      请教一下,检查未打开的工作簿中是否存在某张表名的工作表是否存在的代码?
      思考了很久也没有办法,现向各位求助了,感谢!

TA的精华主题

TA的得分主题

发表于 2014-4-9 12:15 | 显示全部楼层

TA的精华主题

TA的得分主题

发表于 2014-4-9 12:33 | 显示全部楼层
使用ADO:
  1. Sub determineWorkSheetExist()
  2.     Dim cnn As Object, MyWorkSheet As String
  3.     MyWorkSheet = "在册员工$"
  4.     Set cnn = CreateObject("ADODB.Connection")
  5.     cnn.Open "Provider=Microsoft.Ace.OLEDB.12.0;Extended Properties=Excel 12.0;Data Source=" & ThisWorkbook.Path & "\Book1.xlsx"
  6.     If cnn.OpenSchema(20, Array(Empty, Empty, MyWorkSheet, Empty)).EOF Then
  7.         MsgBox "“" & MyWorkSheet & "”表" & "不存在"
  8.     Else
  9.         MsgBox "“" & MyWorkSheet & "” 表" & "已存在"
  10.     End If
  11. End Sub
复制代码

TA的精华主题

TA的得分主题

发表于 2014-4-9 12:41 | 显示全部楼层
或用自定义函数:
  1. Public Function bWorkSheetExist(MyPath As String, MyWorkSheet As String) As Boolean
  2.     Dim cnn As Object
  3.     If Dir(MyPath) <> "" Then
  4.         If Right$(MyWorkSheet, 1) <> "$" Then MyWorkSheet = MyWorkSheet & "$"
  5.         Set cnn = CreateObject("ADODB.Connection")
  6.         cnn.Open "Provider=Microsoft.Ace.OLEDB.12.0;Extended Properties=Excel 12.0;Data Source=" & MyPath
  7.         bWorkSheetExist = Not cnn.OpenSchema(20, Array(Empty, Empty, MyWorkSheet, Empty)).EOF
  8.     End If
  9. End Function
复制代码
  1. Sub test() '测试效果
  2.     Dim MyPath As String, MyWorkSheet As String
  3.     MyPath = ThisWorkbook.Path & "\Book1.xlsx"
  4.     MyWorkSheet = "在册员工$"
  5.     If bWorkSheetExist(MyPath, MyWorkSheet) Then
  6.         MsgBox "“" & MyWorkSheet & "” 表" & "已存在"
  7.     Else
  8.         MsgBox "“" & MyWorkSheet & "”表" & "不存在"
  9.     End If
  10. End Sub
复制代码

TA的精华主题

TA的得分主题

发表于 2014-4-9 12:43 | 显示全部楼层
请参考下面附件
如何检查一个未打开的工作簿是否存在某张表.rar (23.77 KB, 下载次数: 67)

TA的精华主题

TA的得分主题

 楼主| 发表于 2014-4-9 13:50 | 显示全部楼层
本帖最后由 cloudshare 于 2014-4-9 13:55 编辑
zhaogang1960 发表于 2014-4-9 12:43
请参考下面附件

Private Sub CommandButton1_Click()
'AutoScreenUpdate False
'AutoCalculation False
Sheets("预算总成本").Range("a2:e1048576").ClearContents
    Path = ThisWorkbook.Path & "\"
    f = Dir(Path & "*.xls")
    While f > ""
        If f <> ThisWorkbook.Name Then
          Dim cnn As Object, MyWorkSheet As String
          MyWorkSheet = "预算成本总表$"
          Set cnn = CreateObject("ADODB.Connection")
          cnn.Open "Provider=Microsoft.Ace.OLEDB.12.0;Extended Properties=Excel 12.0;Data Source=" & Path & f
            If cnn.OpenSchema(20, Array(Empty, Empty, MyWorkSheet, Empty)).EOF Then
              GoTo a
            Else
               ThisWorkbook.Sheets("预算总成本").Cells(ThisWorkbook.Sheets("预算总成本").Cells(Rows.Count, 1).End(xlUp).Row + 1, 3) = GetValue(Path, f, "预算成本总表", "b2")
               ThisWorkbook.Sheets("预算总成本").Cells(ThisWorkbook.Sheets("预算总成本").Cells(Rows.Count, 1).End(xlUp).Row + 1, 4) = GetValue(Path, f, "预算成本总表", "d2")
               ThisWorkbook.Sheets("预算总成本").Cells(ThisWorkbook.Sheets("预算总成本").Cells(Rows.Count, 1).End(xlUp).Row + 1, 5) = GetValue(Path, f, "预算成本总表", "e28") - GetValue(Path, f, "预算成本总表", "e23") - GetValue(Path, f, "预算成本总表", "e24") - GetValue(Path, f, "预算成本总表", "e25") - GetValue(Path, f, "预算成本总表", "e26")
               If ThisWorkbook.Sheets("预算总成本").Cells(Rows.Count, 1).End(xlUp).Row = 1 Then
                    ThisWorkbook.Sheets("预算总成本").Cells(ThisWorkbook.Sheets("预算总成本").Cells(Rows.Count, 1).End(xlUp).Row + 1, 1) = 1
               Else
                    ThisWorkbook.Sheets("预算总成本").Cells(ThisWorkbook.Sheets("预算总成本").Cells(Rows.Count, 1).End(xlUp).Row + 1, 1) = ThisWorkbook.Sheets("预算总成本").Cells(ThisWorkbook.Sheets("预算总成本").Cells(Rows.Count, 1).End(xlUp).Row, 1).Value + 1
               End If
            End If
         End If
a:        f = Dir()
    Wend

'AutoCalculation True
'AutoScreenUpdate True
End Sub
Sub rescreenupdate()
AutoScreenUpdate True
End Sub
Private Function GetValue(Path, File, Sheet, Ref)
'   从未打开的工作簿中获取数据
    Dim arg As String
'   检查文件是否存在
'    If Right(Path, 1) <> "\" Then Path = Path & "\"
'    If Dir(Path & file) = "" Then
'        GetValue = "File Not Found"
'        Exit Function
'    End If
'   建立参数
    arg = "'" & Path & "[" & File & "]" & Sheet & "'!" & _
      Range(Ref).Range("A1").Address(, , xlR1C1)
'   运行XLM宏
    GetValue = ExecuteExcel4Macro(arg)                                          ------打开文件选择对话框
End Function                                                            

为何执行到函数部分 GetValue = ExecuteExcel4Macro(arg)  为何会弹出打开文件对话框,让选择一个文件?


截图

截图

TA的精华主题

TA的得分主题

发表于 2014-4-9 14:47 | 显示全部楼层
cloudshare 发表于 2014-4-9 13:50
Private Sub CommandButton1_Click()
'AutoScreenUpdate False
'AutoCalculation False

请上传附件,看看能否使用ADO取值

TA的精华主题

TA的得分主题

 楼主| 发表于 2014-4-9 14:53 | 显示全部楼层
[广告] Excel易用宝 - 提升Excel的操作效率 · Excel / WPS表格插件       ★免费下载 ★       ★ 使用帮助
附件已经上传

Desktop.zip

28.92 KB, 下载次数: 5

TA的精华主题

TA的得分主题

 楼主| 发表于 2014-4-9 15:13 | 显示全部楼层
zhaogang1960 发表于 2014-4-9 14:47
请上传附件,看看能否使用ADO取值

附件已经上传。

TA的精华主题

TA的得分主题

发表于 2014-4-9 15:46 | 显示全部楼层
[广告] VBA代码宝 - VBA编程加强工具 · VBA代码随查随用  · 内置多项VBA编程加强工具       ★ 免费下载 ★      ★使用手册
cloudshare 发表于 2014-4-9 14:53
附件已经上传
  1. Private Sub CommandButton1_Click()
  2.     Dim sh As Worksheet
  3.     Set sh = Sheets("预算总成本")
  4.     Range("a2:e1048576").ClearContents
  5.     Path = ThisWorkbook.Path & ""
  6.     f = Dir(Path & "*.xls*")
  7.     While f > ""
  8.         If f <> ThisWorkbook.Name Then
  9.             Dim cnn As Object, MyWorkSheet As String
  10.             MyWorkSheet = "预算成本总表$"
  11.             Set cnn = CreateObject("ADODB.Connection")
  12.             cnn.Open "Provider=Microsoft.Ace.OLEDB.12.0;Extended Properties='Excel 12.0;hdr=no';Data Source=" & Path & f
  13.             If Not cnn.OpenSchema(20, Array(Empty, Empty, MyWorkSheet, Empty)).EOF Then
  14.                 lr = sh.Range("a1").CurrentRegion.Rows.Count + 1
  15.                 sh.Cells(lr, 2) = Split(f, "_")(0)
  16.                 sh.Cells(lr, 3) = cnn.Execute("select f1 from [预算成本总表$b2:b2]")(0)
  17.                 sh.Cells(lr, 4) = cnn.Execute("select f1 from [预算成本总表$d2:d2]")(0)
  18.                 sh.Cells(lr, 5) = cnn.Execute("select f1 from [预算成本总表$e28:e28]")(0)
  19.             End If
  20.          End If
  21.         f = Dir()
  22.     Wend
  23.     cnn.Close
  24.     Set cnn = Nothing
  25. '    以下没有修改
  26. Dim m, o, p, q As Range
  27. Dim h1 As Integer
  28. h1 = Sheets("预算总成本").Cells(Rows.Count, 1).End(xlUp).Row

  29.   For Each m In Worksheets("预算总成本").Range("b2:b" & h1)
  30.               If m = "" Then
  31.                 Cells(m.Row, m.Column).Interior.ColorIndex = 3
  32.               End If
  33.   Next
  34.   For Each o In Worksheets("预算总成本").Range("c2:c" & h1)
  35.               If o = "" Then
  36.                 Cells(o.Row, o.Column).Interior.ColorIndex = 3
  37.               End If
  38.   Next
  39.   For Each p In Worksheets("预算总成本").Range("d2:d" & h1)
  40.               If p = "" Then
  41.                 Cells(p.Row, p.Column).Interior.ColorIndex = 3
  42.               End If
  43.   Next
  44.   For Each q In Worksheets("预算总成本").Range("e2:e" & h1)
  45.               If q = "" Then
  46.                 Cells(q.Row, q.Column).Interior.ColorIndex = 3
  47.               End If
  48.   Next

  49. 'AutoCalculation True
  50. 'AutoScreenUpdate True
  51. End Sub
复制代码
您需要登录后才可以回帖 登录 | 免费注册

本版积分规则

手机版|关于我们|联系我们|ExcelHome

GMT+8, 2025-1-12 16:16 , Processed in 0.025587 second(s), 8 queries , Gzip On, MemCache On.

Powered by Discuz! X3.4

© 1999-2023 Wooffice Inc.

沪公网安备 31011702000001号 沪ICP备11019229号-2

本论坛言论纯属发表者个人意见,任何违反国家相关法律的言论,本站将协助国家相关部门追究发言者责任!     本站特聘法律顾问:李志群律师

快速回复 返回顶部 返回列表