ExcelHome技术论坛

 找回密码
 免费注册

QQ登录

只需一步,快速开始

快捷登录

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

[VBA求助]请帮忙编辑个VBA相同图号的数量求和后合并

[复制链接]

TA的精华主题

TA的得分主题

发表于 2016-12-7 20:49 | 显示全部楼层 |阅读模式
请帮忙编辑个VBA相同图号的数量求和后合并
具体见附件,有劳各位老师

text.rar

7.14 KB, 下载次数: 7

TA的精华主题

TA的得分主题

发表于 2016-12-8 10:37 | 显示全部楼层
[广告] Excel易用宝 - 提升Excel的操作效率 · Excel / WPS表格插件       ★免费下载 ★       ★ 使用帮助
  1. Sub test()
  2. Dim i As Integer
  3. Row = Cells(Rows.Count, 1).End(xlUp).Row
  4. k = 1
  5.     For i = 5 To Row
  6.         If Cells(i, 1) <> Cells(i + 1, 1) Then
  7.             If k = 1 Then
  8.             Cells(i, 7) = "=SUM(B5:B" & Trim(Str(i)) & ")"
  9.             Call merge(5, i)
  10.             Else
  11.             Cells(i, 7) = "=SUM(B" & Trim(Str(k + 1)) & ":B" & Trim(Str(i)) & ")"
  12.             Call merge((k + 1), i)
  13.             End If
  14.             k = i
  15.         End If
  16.     Next i
  17. End Sub

  18. Function merge(i As Integer, j As Integer)
  19. strNanme = "G" & Trim(Str(i)) & ":G" & Trim(Str(j)) & ""
  20.     Range(strNanme).Select
  21.     With Selection
  22.         .HorizontalAlignment = xlCenter
  23.         .VerticalAlignment = xlBottom
  24.         .WrapText = False
  25.         .Orientation = 0
  26.         .AddIndent = False
  27.         .IndentLevel = 0
  28.         .ShrinkToFit = False
  29.         .ReadingOrder = xlContext
  30.         .MergeCells = False
  31.     End With
  32.     Selection.merge
  33.     Selection.Borders(xlDiagonalDown).LineStyle = xlNone
  34.     Selection.Borders(xlDiagonalUp).LineStyle = xlNone
  35.     With Selection.Borders(xlEdgeLeft)
  36.         .LineStyle = xlContinuous
  37.         .ColorIndex = 0
  38.         .TintAndShade = 0
  39.         .Weight = xlThin
  40.     End With
  41.     With Selection.Borders(xlEdgeTop)
  42.         .LineStyle = xlContinuous
  43.         .ColorIndex = 0
  44.         .TintAndShade = 0
  45.         .Weight = xlThin
  46.     End With
  47.     With Selection.Borders(xlEdgeBottom)
  48.         .LineStyle = xlContinuous
  49.         .ColorIndex = 0
  50.         .TintAndShade = 0
  51.         .Weight = xlThin
  52.     End With
  53.     With Selection.Borders(xlEdgeRight)
  54.         .LineStyle = xlContinuous
  55.         .ColorIndex = 0
  56.         .TintAndShade = 0
  57.         .Weight = xlThin
  58.     End With
  59.     Selection.Borders(xlInsideVertical).LineStyle = xlNone
  60.     Selection.Borders(xlInsideHorizontal).LineStyle = xlNone
  61.     With Selection.Interior
  62.         .Pattern = xlSolid
  63.         .PatternColorIndex = xlAutomatic
  64.         .ThemeColor = xlThemeColorAccent3
  65.         .TintAndShade = 0.399975585192419
  66.         .PatternTintAndShade = 0
  67.     End With
  68. End Function
复制代码

TA的精华主题

TA的得分主题

发表于 2016-12-8 10:39 | 显示全部楼层
[广告] VBA代码宝 - VBA编程加强工具 · VBA代码随查随用  · 内置多项VBA编程加强工具       ★ 免费下载 ★      ★使用手册
是不是你的需求

text1.rar

20.03 KB, 下载次数: 13

TA的精华主题

TA的得分主题

 楼主| 发表于 2016-12-12 21:29 | 显示全部楼层
您需要登录后才可以回帖 登录 | 免费注册

本版积分规则

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

GMT+8, 2024-11-26 10:04 , Processed in 0.047749 second(s), 10 queries , Gzip On, MemCache On.

Powered by Discuz! X3.4

© 1999-2023 Wooffice Inc.

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

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

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