ExcelHome技术论坛

 找回密码
 免费注册

QQ登录

只需一步,快速开始

快捷登录

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

[求助] 代码简写问题

[复制链接]

TA的精华主题

TA的得分主题

发表于 2023-7-5 18:01 | 显示全部楼层 |阅读模式
本帖最后由 zhangzhezy 于 2023-7-5 18:05 编辑



Sub 工资表_存档()
'工资表数据存档操作
    Dim i%, j%, k%, x%
    Dim A As Worksheet
    Dim B As Worksheet
   
    Set A = Sheets("工资表")
    Set B = Sheets("费用数据")
   
    Application.ScreenUpdating = False
    Application.DisplayAlerts = False
   
   x = MsgBox("确定数据正确后,更新数据!", vbOKCancel, "提示")
     If x = vbOK Then
       '用户按下“确认”,执行后续代码
   
    With B
        i = .Cells(Rows.Count, "H").End(xlUp).Row + 1
        For j = 2 To i - 1
            If A.Range("B2") = .Cells(j, "H") Then
                i = j
                Exit For
            End If
        Next
        
        For j = 2 To i - 1
            If A.Range("B2") = .Cells(j, "H") And A.Range("B2") = .Cells(j, "H") Then
                i = j
               Exit For
            End If
        Next
    End With
   
    With A
        B.Cells(i, 9) = .Range("B5"):
        B.Cells(i, 10) = .Range("B6"):
        B.Cells(i, 11) = .Range("B7"):
        B.Cells(i, 12) = .Range("B8"):
        B.Cells(i, 13) = .Range("B9"):
        B.Cells(i, 14) = .Range("B10"):
        B.Cells(i, 15) = .Range("B11"):
        B.Cells(i, 16) = .Range("B12"):
        B.Cells(i, 17) = .Range("B13"):
        B.Cells(i, 18) = .Range("B14"):
        B.Cells(i, 19) = .Range("B15"):
        B.Cells(i, 20) = .Range("B16"):
        B.Cells(i, 21) = .Range("B17"):
        B.Cells(i, 22) = .Range("B18"):
        B.Cells(i, 23) = .Range("B19"):
        B.Cells(i, 24) = .Range("B20"):
        B.Cells(i, 25) = .Range("B21"):
        B.Cells(i, 26) = .Range("B22"):
        B.Cells(i, 27) = .Range("B23"):
        B.Cells(i, 28) = .Range("B24"):
        B.Cells(i, 29) = .Range("B25"):
        B.Cells(i, 30) = .Range("B26"):
        B.Cells(i, 31) = .Range("B27"):
        B.Cells(i, 32) = .Range("B28"):
        B.Cells(i, 33) = .Range("B29"):
        B.Cells(i, 34) = .Range("B30"):
        B.Cells(i, 35) = .Range("B31"):
        B.Cells(i, 36) = .Range("B32"):
        B.Cells(i, 37) = .Range("B33"):
        B.Cells(i, 38) = .Range("B34"):
        B.Cells(i, 39) = .Range("B35"):
        B.Cells(i, 40) = .Range("B36"):
        B.Cells(i, 41) = .Range("B37"):
        B.Cells(i, 42) = .Range("B38"):
        B.Cells(i, 43) = .Range("B39"):
        B.Cells(i, 44) = .Range("B40"):
        B.Cells(i, 45) = .Range("B41"):
        B.Cells(i, 46) = .Range("B42"):
        B.Cells(i, 47) = .Range("B43"):
        B.Cells(i, 48) = .Range("B44"):
        B.Cells(i, 49) = .Range("B45"):
        B.Cells(i, 50) = .Range("B46"):
        B.Cells(i, 51) = .Range("B47"):
        B.Cells(i, 52) = .Range("B48"):
        B.Cells(i, 53) = .Range("B49"):
        B.Cells(i, 54) = .Range("B50"):
        B.Cells(i, 55) = .Range("B51"):
        B.Cells(i, 56) = .Range("B52"):
        B.Cells(i, 57) = .Range("B53"):
        B.Cells(i, 58) = .Range("B54"):
        B.Cells(i, 59) = .Range("B55"):
      
        End With
   
    'Call Report
    Application.ScreenUpdating = True
    Application.DisplayAlerts = True
    ActiveWorkbook.SAVE
    'MsgBox "数据已更新"
   
      ElseIf x = vbCancel Then
    '用户按下“取消”,退出程序
  End If
  
End Sub



其中
  1. With A
  2. B.Cells(i, 9) = .Range("B5"):
  3. B.Cells(i, 10) = .Range("B6"):
  4. B.Cells(i, 11) = .Range("B7"):
  5. B.Cells(i, 12) = .Range("B8"):
  6. B.Cells(i, 13) = .Range("B9"):
  7. B.Cells(i, 14) = .Range("B10"):
  8. B.Cells(i, 15) = .Range("B11"):
  9. B.Cells(i, 16) = .Range("B12"):
  10. B.Cells(i, 17) = .Range("B13"):
  11. B.Cells(i, 18) = .Range("B14"):
  12. B.Cells(i, 19) = .Range("B15"):
  13. B.Cells(i, 20) = .Range("B16"):
  14. B.Cells(i, 21) = .Range("B17"):
  15. B.Cells(i, 22) = .Range("B18"):
  16. B.Cells(i, 23) = .Range("B19"):
  17. B.Cells(i, 24) = .Range("B20"):
  18. B.Cells(i, 25) = .Range("B21"):
  19. B.Cells(i, 26) = .Range("B22"):
  20. B.Cells(i, 27) = .Range("B23"):
  21. B.Cells(i, 28) = .Range("B24"):
  22. B.Cells(i, 29) = .Range("B25"):
  23. B.Cells(i, 30) = .Range("B26"):
  24. B.Cells(i, 31) = .Range("B27"):
  25. B.Cells(i, 32) = .Range("B28"):
  26. B.Cells(i, 33) = .Range("B29"):
  27. B.Cells(i, 34) = .Range("B30"):
  28. B.Cells(i, 35) = .Range("B31"):
  29. B.Cells(i, 36) = .Range("B32"):
  30. B.Cells(i, 37) = .Range("B33"):
  31. B.Cells(i, 38) = .Range("B34"):
  32. B.Cells(i, 39) = .Range("B35"):
  33. B.Cells(i, 40) = .Range("B36"):
  34. B.Cells(i, 41) = .Range("B37"):
  35. B.Cells(i, 42) = .Range("B38"):
  36. B.Cells(i, 43) = .Range("B39"):
  37. B.Cells(i, 44) = .Range("B40"):
  38. B.Cells(i, 45) = .Range("B41"):
  39. B.Cells(i, 46) = .Range("B42"):
  40. B.Cells(i, 47) = .Range("B43"):
  41. B.Cells(i, 48) = .Range("B44"):
  42. B.Cells(i, 49) = .Range("B45"):
  43. B.Cells(i, 50) = .Range("B46"):
  44. B.Cells(i, 51) = .Range("B47"):
  45. B.Cells(i, 52) = .Range("B48"):
  46. B.Cells(i, 53) = .Range("B49"):
  47. B.Cells(i, 54) = .Range("B50"):
  48. B.Cells(i, 55) = .Range("B51"):
  49. B.Cells(i, 56) = .Range("B52"):
  50. B.Cells(i, 57) = .Range("B53"):
  51. B.Cells(i, 58) = .Range("B54"):
  52. B.Cells(i, 59) = .Range("B55"):

  53. End With
复制代码
怎么简写,由于要计算的单元格太多,VBA提示过程太大!谢谢大神赐教!

TA的精华主题

TA的得分主题

发表于 2023-7-5 18:27 | 显示全部楼层
[广告] VBA代码宝 - VBA编程加强工具 · VBA代码随查随用  · 内置多项VBA编程加强工具       ★ 免费下载 ★      ★使用手册
With A
for j= 5 to 55
B.Cells(i, j+4) = .Range("B" & j):
next
End With
楼主这样试试。

评分

1

查看全部评分

TA的精华主题

TA的得分主题

 楼主| 发表于 2023-7-5 18:31 | 显示全部楼层
杨建营 发表于 2023-7-5 18:27
With A
for j= 5 to 55
B.Cells(i, j+4) = .Range("B" & j):

谢谢,问题解决

TA的精华主题

TA的得分主题

发表于 2023-7-5 21:43 | 显示全部楼层

TA的精华主题

TA的得分主题

发表于 2023-7-5 21:59 | 显示全部楼层
[广告] VBA代码宝 - VBA编程加强工具 · VBA代码随查随用  · 内置多项VBA编程加强工具       ★ 免费下载 ★      ★使用手册
看数字都是连续的,不应该一个一个输出,存入一个数组变量,一次性输出会快很多

TA的精华主题

TA的得分主题

发表于 2023-7-6 07:00 | 显示全部楼层

TA的精华主题

TA的得分主题

发表于 2023-7-6 07:32 | 显示全部楼层
[广告] Excel易用宝 - 提升Excel的操作效率 · Excel / WPS表格插件       ★免费下载 ★       ★ 使用帮助
楼主真的很用心,都看晕了,VBA专做重复处理的事,不会这么长的,论坛里多看下,.....我也小白呀,共勉共勉!

TA的精华主题

TA的得分主题

发表于 2023-7-6 07:57 | 显示全部楼层
沈默00 发表于 2023-7-6 07:32
楼主真的很用心,都看晕了,VBA专做重复处理的事,不会这么长的,论坛里多看下,.....我也小白呀,共勉共勉 ...

来得好早

TA的精华主题

TA的得分主题

发表于 2023-7-6 08:15 | 显示全部楼层
B.Cells(i, 9).resize(51) .value= .Range("B5").resize(51) .value
楼主自己测试看看是否可行

TA的精华主题

TA的得分主题

发表于 2023-7-6 10:28 | 显示全部楼层
您需要登录后才可以回帖 登录 | 免费注册

本版积分规则

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

GMT+8, 2024-11-16 21:37 , Processed in 0.047303 second(s), 15 queries , Gzip On, MemCache On.

Powered by Discuz! X3.4

© 1999-2023 Wooffice Inc.

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

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

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