google excel 指令碼的相關文章
Excel VBA判斷工作表是否存在的函數 | 彰化一整天blog

Excel VBA判斷工作表是否存在的函數 | 彰化一整天blog

瀏覽:643
日期:2024-07-15
Function checkSheetName(sheetname) '檢查活頁是否存在 isfind = False For Each st In Sheets If st.Name = sheetname Then isfind = True Exit For End If Next checkSheetName = isfind End Function...看更多