①activeworkbook的常見屬性
activeworkbook.sheets.count 』獲取活動工作薄中工作表數
activeworkbook.linksources(xlexcellinks)(1) 『返回當前工作簿中的第一條鏈結
thisworkbook.worksheets(「sheet2」).visible=xlsheethidden 『隱藏工作表,與在excel選單中執行「格式—工作表—隱藏」操作一樣 (excel2010中0代表xlsheethidden,2代表xlsheetveryhidden)
thisworkbook.worksheets(「sheet2」).visible=xlsheetveryhidden 『隱藏工作表,不能通過在excel選單中執行「格式—工作表—取消隱藏」來重新顯示工作表
thisworkbook.worksheets(「sheet2」).visible=xlsheetvisible 『顯示被隱藏的工作表
thisworkbook.sheets(1).protectcontents 『檢查工作表是否受到保護
②activesheet物件常見屬性
activesheet.columns("b").cut '剪下b列
activesheet.columns("f").insert 『以上兩句將b列資料移至f列,原c列後的資料左移
activesheet.range(「a:a」).entirecolumn.autofit 『自動調整當前工作表a列的列寬
activesheet.cells.specialcells(xlcelltypeconstants,xltextvalues) 『選中當前工作表中常量和文字單元格
activesheet.cells.specialcells(xlcelltypeconstants,xlerrors+xltextvalues) 『選中當前工作表中常量和文字及錯誤值單元格
activesheet.usedrange.rows.count 『當前工作表中已使用的行數
thisworkbook.worksheets.add thisworkbook.worksheets(3), , 2 『在第3張工作表之前新增2個新的工作表
activesheet.move after:=activeworkbook. _
sheets(activeworkbook.sheets.count) 』將當前工作表移至工作表的最後
worksheets(array(「sheet1」,」sheet2」)).select 』同時選擇工作表sheet1和sheet2
activesheet.usedrange.formatconditions.delete 『刪除當前工作表中應用的條件格式
cells.hyperlinks.delete 『取消當前工作表中所有單元格的超連結
activesheet.pagesetup.rightfooter=activeworkbook.fullname 『在頁尾顯示檔案的路徑
activesheet.printpreview enablechanges:=false 『禁用顯示在excel的「列印預覽」視窗中的「設定」和「頁邊距」按鈕。
activesheet.usedrange.row 『獲取已使用的單元格區域的第一行的行號。
come from article url��/2880.html
Excel 常用函式
1.column reference reference 為需要得到其列標的單元格或單元格區域。2.row reference reference 為需要得到其行號的單元格或單元格區域。3.address row num,column num 按照給定的行號和列標,建立文字型別的單元格位址 addr...
excel 常用公式
四捨五入 round 數値,位數 向上進製 ceiling 1.771,0.01 1.78 固定列 a4 e 2 查詢個數 countif g12 j12,引用其他sheet頁的單元格 a1 計算i2到i83中內容等於f90的內容,且h2到h83內容為空的個數 countifs i 2 i 83,f...
excel 常用技巧
lookup 的注意知識點 1 lookup要查詢乙個明確的值或者範圍的時候 也就是知道在查詢的資料列是肯定包含被查詢的值 查詢列必須按照公升序排列。在excel幫助文件裡也是這麼說的 如果所查詢值為明確的值,則返回值對應的結果行,如果沒有明確的值,則向下取的於所查詢值最近的值 2 查詢乙個不確定的...