>即時新聞-熱門

2008年8月21日星期四

excel - vba 新增工作表 , 欄 , 列

Sub 新增工作表()

x = InputBox("請輸入新增工作表的張數", "職訓局")
For i = 1 To x Step 1
Sheets(1).Select
Sheets.Add
Sheets(2).Move Before:=Sheets(1)

Next

End Sub
Sub 插入列()
x = InputBox("請輸入新增的列數", "職訓局")
For i = 1 To x Step 1
ActiveCell.Offset(1, 0).Select

Selection.EntireRow.Insert

Next

End Sub
Sub 插入欄()
x = InputBox("請輸入新增的欄數", "職訓局")
For i = 1 To x Step 1
ActiveCell.Offset(0, 1).Select

Selection.EntireColumn.Insert

Next



End Sub

0 评论:

 
妹咕數位學園歡迎網友們來信指教 妹咕信箱