微信扫码
和创始人交个朋友
我要投稿
使用DeepSeek自动生成Excel VBA代码,实现批量填写工作表的高效工作流程。核心内容:1. DeepSeek生成VBA代码,自动化填写Excel工作表2. 根据汇总信息在多个模版工作表中查找并填写数据3. 根据特定项的条目数生成多个工作表,自动化处理复杂Excel任务
Sub GenerateNewWorkbook()
Dim srcWb As Workbook, destWb As Workbook
Dim infoSheet As Worksheet, tempSheet As Worksheet
Dim criteria As String, lastRow As Long, i As Long, j As Long
Dim headerDict As Object, dataArr As Variant, filteredData As Collection
Dim ws As Worksheet, newWs As Worksheet, cell As Range
Dim fieldName As String, colIndex As Long, targetRow As Long
Dim rowData() As Variant
Set srcWb = ThisWorkbook
Set infoSheet = srcWb.Sheets("信息总表")
criteria = InputBox("请输入需要筛选的使用单位名称:")
' 获取信息总表数据
lastRow = infoSheet.Cells(infoSheet.Rows.Count, "A").End(xlUp).row
dataArr = infoSheet.Range("A1:V" & lastRow).Value
' 创建标题字典
Set headerDict = CreateObject("Scripting.Dictionary")
For j = 1 To UBound(dataArr, 2)
headerDict(Trim(dataArr(1, j))) = j
Next j
' 筛选目标数据(存储整行数据)
Set filteredData = New Collection
For i = 2 To UBound(dataArr, 1)
If dataArr(i, headerDict("使用单位名称")) = criteria Then
ReDim rowData(1 To UBound(dataArr, 2))
For j = 1 To UBound(dataArr, 2)
rowData(j) = dataArr(i, j)
Next j
filteredData.Add rowData
End If
Next i
If filteredData.Count = 0 Then Exit Sub
' 创建新工作簿(不再设置SheetsInNewWorkbook)
Set destWb = Workbooks.Add
' ===== 处理委托单 =====
For i = 1 To filteredData.Count
srcWb.Sheets("委托单").Copy After:=destWb.Sheets(destWb.Sheets.Count)
Set newWs = destWb.ActiveSheet
newWs.Name = "委托单_" & i
' 替换自动获取内容(新增设备代码格式处理)
For Each cell In newWs.UsedRange
If InStr(cell.Value, "自动获取") > 0 Then
fieldName = Split(cell.Value, "自动获取")(1)
fieldName = Trim(fieldName)
If headerDict.Exists(fieldName) Then
colIndex = headerDict(fieldName)
cell.NumberFormat = "@" ' 强制设为文本格式
cell.Value = CStr(filteredData(i)(colIndex)) ' 转换为字符串
' 特殊处理设备代码(保留完整数字)
If fieldName = "设备代码" Then
cell.Value = "'" & CStr(filteredData(i)(colIndex)) ' 添加单引号保留格式
End If
End If
End If
Next cell
' 处理拟检测日期(修正无效引用)
On Error Resume Next
Dim detecDate As Date
' 提取检测时间并去除时间部分(如存在)
Dim rawDate As String
rawDate = filteredData(i)(headerDict("检测时间"))
If InStr(rawDate, " ") > 0 Then
rawDate = Split(rawDate, "")(0) ' 仅保留日期部分
End If
detecDate = DateAdd("m", -1, CDate(rawDate))
' 找到H列最后一个非空单元格的下方插入新日期
With newWs
Dim lastRowH As Long
lastRowH = .Cells(.Rows.Count, "H").End(xlUp).row
.Cells(lastRowH + 1, "H").Value = Format(detecDate, "yyyy-mm-dd")
End With
On Error GoTo 0
Next i
' ===== 处理附表 =====
srcWb.Sheets("附表").Copy After:=destWb.Sheets(destWb.Sheets.Count)
Set newWs = destWb.ActiveSheet
newWs.Name = "附表"
targetRow = 5
For i = 1 To filteredData.Count
With newWs
' 设备代码特殊处理(C列)
.Cells(targetRow, 3).NumberFormat = "@"
.Cells(targetRow, 3).Value = "'" & CStr(filteredData(i)(headerDict("设备代码")))
' 其他字段正常写入
.Cells(targetRow, 1) = i
.Cells(targetRow, 2) = filteredData(i)(headerDict("单位内编号"))
.Cells(targetRow, 4) = filteredData(i)(headerDict("载重量(kg)"))
.Cells(targetRow, 5) = filteredData(i)(headerDict("层站数"))
.Cells(targetRow, 6) = filteredData(i)(headerDict("速度(m/s)"))
.Cells(targetRow, 7) = filteredData(i)(headerDict("检测时间"))
.Cells(targetRow, 8) = filteredData(i)(headerDict("费用"))
End With
targetRow = targetRow + 1
Next i
' ===== 处理符合性声明=====
srcWb.Sheets("符合性声明").Copy After:=destWb.Sheets(destWb.Sheets.Count)
Set newWs = destWb.ActiveSheet
newWs.Name = "符合性声明"
' 设备代码特殊处理(A列)
targetRow = 7
For i = 1 To filteredData.Count
With newWs
.Cells(targetRow, 1).NumberFormat = "@"
.Cells(targetRow, 1).Value = "'" & CStr(filteredData(i)(headerDict("设备代码")))
.Cells(targetRow, 2) = filteredData(i)(headerDict("产品编号"))
.Cells(targetRow, 3) = filteredData(i)(headerDict("登记证编号"))
.Cells(targetRow, 4) = filteredData(i)(headerDict("单位内编号"))
End With
targetRow = targetRow + 1
Next i
' 删除默认Sheet1(如果存在)
On Error Resume Next
Application.DisplayAlerts = False
destWb.Sheets("Sheet1").Delete
Application.DisplayAlerts = True
On Error GoTo 0
' 保存
destWb.SaveAs "Generated_Report.xlsx"
MsgBox "处理完成!", vbInformation
End Sub
53AI,企业落地大模型首选服务商
产品:场景落地咨询+大模型应用平台+行业解决方案
承诺:免费场景POC验证,效果验证后签署服务协议。零风险落地应用大模型,已交付160+中大型企业
2024-10-24
2024-04-24
2024-07-11
2024-09-27
2024-04-19
2024-06-22
2024-06-26
2024-04-18
2024-12-21
2024-09-06
2025-02-21
2025-02-13
2025-01-21
2025-01-08
2024-12-27
2024-11-28
2024-11-05
2024-10-30