首页 > Excel专区 > Excel函数 >

excel VBA判断工作表是否存在&不存在时创建

Excel函数 2023-01-08

Function 表存在(s)
For Each i In Sheets
If i.Name = s & "" Then 表存在 = 1 '连接空白是避免表格名为数值时格式不同
' Debug.Print i.Name = s
Next
End Function

Function 建表(s)
For Each i In Sheets
If i.Name = s Then Exit Function
Next
Sheets.Add(, Sheets(Sheets.Count)).Name = s
' Sheets.Add.Name = s'创建在前面
' Sheets.Add 方法 (Excel):https://www.office26.com/excel/excel_7221.html
End Function

excel VBA判断工作表是否存在&不存在时创建的下载地址:
  • 本地下载


  • Copyright © 2016-2023 office学习教程网 office.tqzw.net.cn. All Rights Reserved.