ExcelHome技术论坛

 找回密码
 免费注册

QQ登录

只需一步,快速开始

快捷登录

搜索
EH技术汇-专业的职场技能充电站 妙哉!函数段子手趣味讲函数 Excel服务器-会Excel,做管理系统 效率神器,一键搞定繁琐工作
HR薪酬管理数字化实战 Excel 2021函数公式学习大典 Excel数据透视表实战秘技 打造核心竞争力的职场宝典
让更多数据处理,一键完成 数据工作者的案头书 免费直播课集锦 ExcelHome出品 - VBA代码宝免费下载
用ChatGPT与VBA一键搞定Excel WPS表格从入门到精通 Excel VBA经典代码实践指南
查看: 410|回复: 2

[求助] 大神帮忙看下

[复制链接]

TA的精华主题

TA的得分主题

发表于 2023-2-6 11:05 | 显示全部楼层 |阅读模式
[广告] Excel易用宝 - 提升Excel的操作效率 · Excel / WPS表格插件       ★免费下载 ★       ★ 使用帮助
点击汉中数据后,数据自动填写汉中的库存(E列)和汉中的在制(F列)里,现在的问题是点击后自动填写到了(C)列到(D)写,大师帮忙看下需要修改哪里,我改了行和列的位置不行
1675652550812.png

Sub 汉中计划()

Application.ScreenUpdating = False
Dim ar As Variant, br As Variant, cr As Variant
Dim i As Long, r As Long, rs As Long
Dim F As Object
Set F = CreateObject("scripting.dictionary")
With Sheets("汉中库存")
    rs = .Cells(Rows.Count, 1).End(xlUp).Row
    If rs < 4 Then MsgBox "【成品库存】工作表为空!": Exit Sub
    br = .Range("a2:bv" & rs)
End With



With Sheets("汉中在制品")
    r = .Cells(Rows.Count, 3).End(xlUp).Row
    If r < 4 Then MsgBox "【工单排程】工作表为空!": Exit Sub
    ar = .Range("a2:ax" & r)
End With


With Sheets("生产计划")
     ms = .Cells(Rows.Count, 1).End(xlUp).Row
     If ms > 2 Then
        .Range("a3:D" & ms).Borders.LineStyle = 0
        .Range("c3:D" & ms) = Empty
    End If
    arr = .Range("a1:al" & ms)
    For i = 3 To UBound(arr)
        If Trim(arr(i, 1)) <> "" Then
            F(Trim(arr(i, 1))) = i
        End If
    Next i
   
    For i = 2 To UBound(ar)
        If Trim(ar(i, 3)) <> "" Then
            If Trim(ar(i, 8)) = "" Then
                xh = F(Trim(ar(i, 2)))
                If xh <> "" Then
                    arr(xh, 4) = arr(xh, 4) + ar(i, 6) '''工单数量
                End If
            End If
        End If
    Next i
                                                                                                                                                                                                                                                                    '''工单排程中获不重复的料号和投料数量累计数
    For i = 2 To UBound(br)
        If Trim(br(i, 3)) <> "" Then
            xh = F(Trim(br(i, 3)))
            If xh <> "" Then
                arr(xh, 3) = br(i, 9) ''期末库存
            End If
        End If
    Next i
   
   
'''成品库存中获取期末库存


    .Range("a1:D" & ms) = arr
    .Range("a1:d" & ms).Borders.LineStyle = 1
End With
Application.ScreenUpdating = True

   

End Sub






测试.rar

901.63 KB, 下载次数: 8

TA的精华主题

TA的得分主题

发表于 2023-2-11 10:34 | 显示全部楼层
Sub 福清计划()
Application.ScreenUpdating = False
Dim ar As Variant, br As Variant, cr As Variant
Dim i As Long, r As Long, rs As Long
Dim d As Object
Set d = CreateObject("scripting.dictionary")
With Sheets("福清库存")
    rs = .Cells(Rows.Count, 1).End(xlUp).Row
    If rs < 4 Then MsgBox "【成品库存】工作表为空!": Exit Sub
    br = .Range("a2:bv" & rs)
End With



With Sheets("福清在制品")
    r = .Cells(Rows.Count, 3).End(xlUp).Row
    If r < 4 Then MsgBox "【工单排程】工作表为空!": Exit Sub
    ar = .Range("a2:ax" & r)
End With


With Sheets("生产计划")
     ms = .Cells(Rows.Count, 1).End(xlUp).Row
     If ms > 2 Then
        .Range("a3:D" & ms).Borders.LineStyle = 0
        .Range("c3:D" & ms) = Empty
    End If
    arr = .Range("a1:al" & ms)
    For i = 3 To UBound(arr)
        If Trim(arr(i, 1)) <> "" Then
            d(Trim(arr(i, 1))) = i
        End If
    Next i
   
    For i = 2 To UBound(ar)
        If Trim(ar(i, 3)) <> "" Then
            If Trim(ar(i, 8)) = "" Then
                xh = d(Trim(ar(i, 2)))
                If xh <> "" Then
                    arr(xh, 4) = arr(xh, 4) + ar(i, 6) '''工单数量
                End If
            End If
        End If
    Next i
                                                                                                                                                                                                                                                                    '''工单排程中获不重复的料号和投料数量累计数
    For i = 2 To UBound(br)
        If Trim(br(i, 2)) <> "" Then
            xh = d(Trim(br(i, 2)))
            If xh <> "" Then
                arr(xh, 3) = br(i, 9) ''期末库存
            End If
        End If
    Next i
   
   
   
   
   
'''成品库存中获取期末库存


    .Range("a1:D" & ms) = arr
    .Range("a1:M" & ms).Borders.LineStyle = 1
End With
Application.ScreenUpdating = True

   

End Sub

Sub 汉中计划()

Application.ScreenUpdating = False
Dim ar As Variant, br As Variant, cr As Variant
Dim i As Long, r As Long, rs As Long
Dim F As Object
Set F = CreateObject("scripting.dictionary")
With Sheets("汉中库存")
    rs = .Cells(Rows.Count, 1).End(xlUp).Row
    If rs < 4 Then MsgBox "【成品库存】工作表为空!": Exit Sub
    br = .Range("a2:bv" & rs)
End With



With Sheets("汉中在制品")
    r = .Cells(Rows.Count, 3).End(xlUp).Row
    If r < 4 Then MsgBox "【工单排程】工作表为空!": Exit Sub
    ar = .Range("a2:ax" & r)
End With


With Sheets("生产计划")
     ms = .Cells(Rows.Count, 1).End(xlUp).Row
     If ms > 2 Then
        .Range("e3:f" & ms).Borders.LineStyle = 0
        .Range("e3:f" & ms) = Empty
    End If
    arr = .Range("a1:al" & ms)
    For i = 3 To UBound(arr)
        If Trim(arr(i, 1)) <> "" Then
            F(Trim(arr(i, 1))) = i
        End If
    Next i
   
    For i = 2 To UBound(ar)
        If Trim(ar(i, 3)) <> "" Then
            If Trim(ar(i, 8)) = "" Then
                xh = F(Trim(ar(i, 2)))
                If xh <> "" Then
                    arr(xh, 6) = arr(xh, 6) + ar(i, 6) '''工单数量
                End If
            End If
        End If
    Next i
                                                                                                                                                                                                                                                                    '''工单排程中获不重复的料号和投料数量累计数
    For i = 2 To UBound(br)
        If Trim(br(i, 3)) <> "" Then
            xh = F(Trim(br(i, 3)))
            If xh <> "" Then
                arr(xh, 5) = br(i, 9) ''期末库存
            End If
        End If
    Next i
   
   
'''成品库存中获取期末库存


    .Range("a1:f" & ms) = arr
    .Range("a1:f" & ms).Borders.LineStyle = 1
End With
Application.ScreenUpdating = True

   

End Sub

TA的精华主题

TA的得分主题

发表于 2023-2-11 10:35 | 显示全部楼层
本帖最后由 chzsh 于 2023-2-11 10:49 编辑

两个库存格式和料名不一样啊
您需要登录后才可以回帖 登录 | 免费注册

本版积分规则

手机版|关于我们|联系我们|ExcelHome

GMT+8, 2024-9-29 05:02 , Processed in 0.029300 second(s), 10 queries , Gzip On, MemCache On.

Powered by Discuz! X3.4

© 1999-2023 Wooffice Inc.

沪公网安备 31011702000001号 沪ICP备11019229号-2

本论坛言论纯属发表者个人意见,任何违反国家相关法律的言论,本站将协助国家相关部门追究发言者责任!     本站特聘法律顾问:李志群律师

快速回复 返回顶部 返回列表