摘要: http://www.ukettle.orgKettle开源社区http://www.51cto.com综合IT学习网站http://www.imooc.com慕课网,很多好的学习课程 阅读全文
posted @ 2015-12-11 23:04 Lio5n 阅读(219) 评论(0) 推荐(0) 编辑
摘要: 下面是利用VBA遍历Excel sheet的例子,可以用于Excel的批量处理。Sub Insert_CodeString()Dim fs, ft As ObjectDim xlApp As Excel.ApplicationDim xlBook As Excel.WorkbookDim xlShe... 阅读全文
posted @ 2015-12-11 17:47 Lio5n 阅读(16654) 评论(0) 推荐(0) 编辑
摘要: 下面是利用VBA导出文件的例子,可以导出Excel内容等其他可以使用VBA的地方。Sub export_file() Dim fs, ft As Object Dim txtname As String txtname = "export_file" Set fs = Cre... 阅读全文
posted @ 2015-12-11 17:44 Lio5n 阅读(869) 评论(0) 推荐(0) 编辑
摘要: 主要思想是先给单元格设置名称,再设置超链接代码如下:Sub creat_link()Dim Source As StringSource = "t1"Dim Target As StringTarget = "t2"Dim i As Integeri = 1Dim j As Integerj = 1... 阅读全文
posted @ 2015-12-11 17:36 Lio5n 阅读(2715) 评论(0) 推荐(0) 编辑