
excel运用技巧
knifewei
这个作者很懒,什么都没留下…
展开
-
用EXCEL实现三级联动的vba代码
Private Sub Worksheet_Change(ByVal Target As Range)Dim i As IntegerDim tempStr As StringDim firstDrawBoxRowCount As IntegerDim firstDrawBoxColumn As IntegerfirstDrawBoxRowCount = 15 --三级联动第一级的单元原创 2009-07-16 13:44:00 · 10892 阅读 · 13 评论 -
在excel中遍历找出所要的字段的内容
在一个excel文件中有100个sheet页,每个sheet页的格式固定,每个sheet页有30列字段,上万行的数据,如何把这个excel文件中的数据按需要的字段整理成一个sheet业中,如果手工作业的话是很烦人的,所以弄了个代码帮忙,十几秒搞定!!! Sub readfield()Dim she As WorksheetApplication.ScreenUpdating = False原创 2009-07-16 14:00:00 · 2506 阅读 · 0 评论