VBA

3、 单元格R1C1与C1的用法.
R1C1:把表分成行与列,行和列是数字,以当前活动格为原点
C1:行是数字,列是字母,原点在第一个单元格
例:  Range("E12").Select
    ActiveCell.FormulaR1C1 = "=+SUM(R[-10]C[-4]:R[4]C[-4])"
4、 利用宏录制取代码
5、 动态生成图表
Function GetChart(selSource As Range, selRange As Range, selChartType As XlChartType, sheetName As String)
    selRange.Select
    Charts.Add
    ActiveChart.ChartType = selChartType
    ActiveChart.SetSourceData Source:=selSource, PlotBy:=xlColumns
    ActiveChart.Location Where:=xlLocationAsObject, Name:=sheetName
End Function
6、 Excel内置高级功能应用 
AdvancedFitler,数据验证,加密/解密等.
7、 在多个Excel文件之间交互数据
在Worksheets中:Workbooks(“*.xls”).Sheets(“sheet1”)
未在Worksheets: ActiveSheet.QueryTables.Add Connection, Destination,Sql