返回首页
当前位置: 主页 > Excel教程 > Excel2003教程 >

如何使用excel制作类似word的目录索引

时间:2013-07-04 00:50来源:Office教程学习网 www.office68.com编辑:麦田守望者

大家都知道WORD内可以自动生成索引目录,以方便查询使用,但在EXCEL里是否可以实现呢?答案是可以的,EXCEL自身无此功能,我们需要借助VBA来实现:下面office学院教你如何使用excel制作类似word的目录索引!

首先打开要创建目录的EXCEL文件 —— Alt+F11——插入——模块——把下面的代码拷贝到模块中:

Sub mulu()
On Error GoTo Tuichu
Dim i As Integer
Dim ShtCount As Integer
Dim SelectionCell As Range

ShtCount = Worksheets.Count
If ShtCount = 0 Or ShtCount = 1 Then Exit Sub
Application.ScreenUpdating = False
For i = 1 To ShtCount
If Sheets(i).Name = ”目录” Then
Sheets(“目录”).Move Before:=Sheets(1)
End If
Next i
If Sheets(1).Name <> ”目录” Then
ShtCount = ShtCount + 1
Sheets(1).Select
Sheets.Add
Sheets(1).Name = ”目录”
End If
Sheets(“目录”).Select
Columns(“B:B”).Delete Shift:=xlToLeft
Application.StatusBar = ”正在生成目录…………请等待!”
For i = 2 To ShtCount
ActiveSheet.Hyperlinks.Add Anchor:=Worksheets(“目录”).Cells(i, 2), Address:=”", SubAddress:= _
Sheets(i).Name & ”!R1C1″, TextToDisplay:=Sheets(i).Name
Next
Sheets(“目录”).Select
Columns(“B:B”).AutoFit
Cells(1, 2) = ”目录”
Set SelectionCell = Worksheets(“目录”).Range(“B1″)
With SelectionCell
.HorizontalAlignment = xlDistributed
.VerticalAlignment = xlCenter
.AddIndent = True
.Font.Bold = True
.Interior.ColorIndex = 34
End With
Application.StatusBar = False
Application.ScreenUpdating = True
Tuichu:
End Sub

关闭VBA编辑界面,在你要插入的电子表格里按ALT+F8快捷键,选好你刚才写的模块mulu,点执行,OK。

------分隔线----------------------------
标签(Tag):excel excel2007 excel2010 excel2013 excel2003 excel技巧 excel教程 excel实例教程
------分隔线----------------------------
推荐内容
猜你感兴趣