小技巧
menghefang
这个作者很懒,什么都没留下…
展开
-
excel同列批量合并取值相同行
其中“D”为D列,可更换为A,B,C等 Sub hebing() j = 1 For i = 2 To Range("G65536").End(xlUp).Row If Cells(i, "D") <> Cells(j, "D") Then j = i Else Application.DisplayAlerts = False Range(Cells(j, "D"), Cells(i, "D")).Merge Applicat原创 2022-02-25 17:45:34 · 323 阅读 · 0 评论 -
python遍历文件夹下文件 批量重命名
python 批量重命名 #!/usr/bin/python # -*- coding:utf8 -*- import os import sys def ReName(filpath): video_list = os.listdir(filpath) for video_index in range(0, len(video_list)): fu...原创 2019-05-27 19:44:53 · 8279 阅读 · 2 评论