ExcelHome技术论坛

 找回密码
 免费注册

QQ登录

只需一步,快速开始

快捷登录

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

[求助] 分区间累加问题

[复制链接]

TA的精华主题

TA的得分主题

发表于 2024-4-7 16:22 | 显示全部楼层 |阅读模式
本帖最后由 cui26896 于 2024-4-7 17:20 编辑

按自己写的代码,Case Is <= 45条件后只有一个条件的能返回有计算结果。要变通只能用If then来替代,非常的不统一。各位高手有什么好方法,请赐教!
分区间累加.zip (257.19 KB, 下载次数: 18)            

TA的精华主题

TA的得分主题

发表于 2024-4-7 16:43 | 显示全部楼层
[广告] Excel易用宝 - 提升Excel的操作效率 · Excel / WPS表格插件       ★免费下载 ★       ★ 使用帮助
区间条件写作 case 10 to 45

评分

1

查看全部评分

TA的精华主题

TA的得分主题

 楼主| 发表于 2024-4-7 16:52 | 显示全部楼层
[广告] VBA代码宝 - VBA编程加强工具 · VBA代码随查随用  · 内置多项VBA编程加强工具       ★ 免费下载 ★      ★使用手册
cidanji 发表于 2024-4-7 16:43
区间条件写作 case 10 to 45

你这一段artest(lngrow,20)>=10 and artest(lngrow,20)<45,不在我所需要的范围,用case 45 to 99.99,50 to 99.99,这后一段不出结果,这我都试过了。

TA的精华主题

TA的得分主题

 楼主| 发表于 2024-4-7 16:56 | 显示全部楼层
cidanji 发表于 2024-4-7 16:43
区间条件写作 case 10 to 45

还有啊,很奇特的,用case 45 to 99.99和If artest(lngrow,20)>=45 and artest(lngrow,20)<100,算出来的结果不一样,前者是错误的,后者是正确的。正确结果我是用VBA ADO SQL方法和Countif函数算出来的。VBA ADO SQL方法太慢,而且查询语句也比较麻烦。

TA的精华主题

TA的得分主题

发表于 2024-4-7 16:57 | 显示全部楼层
cui26896 发表于 2024-4-7 16:52
你这一段artest(lngrow,20)>=10 and artest(lngrow,20)

把你具体需求,各区间范围和逻辑代码贴出来看看

TA的精华主题

TA的得分主题

 楼主| 发表于 2024-4-7 17:22 | 显示全部楼层
报歉,上传附件时忘了把代码附上了。
  1. Option Explicit

  2. Dim artest As Variant
  3. Dim artbl(1 To 174, 1 To 1) As Variant
  4. Dim lngrow As Long

  5. Sub test() '测试

  6.     Dim dtyear As Date
  7.     Dim lngmaxrow As Long
  8.    
  9.     ReDim artest(1 To 173, 1 To 6)
  10.     dtyear = #1/5/2014#
  11.    
  12.     With ThisWorkbook.Worksheets("Sheet1")
  13.         lngmaxrow = .UsedRange.Rows.Count
  14.         artest = .Range("A2:F" & lngmaxrow)
  15.     End With
  16.    
  17.     For lngrow = 1 To UBound(artest)
  18.         
  19.        UpdateArray 2, 3, 4, 5, 6
  20.         
  21.         If CDate(Format(artest(lngrow, 4), "0000/00/00")) <= dtyear Then
  22.         
  23.           UpdateArray 8, 9, 10, 11, 12
  24.          
  25.             Select Case artest(lngrow, 2)
  26.                 Case Is <= 35
  27.                     UpdateArray 20, 21, 22, 23, 24
  28.                 Case Is <= 40
  29.                     UpdateArray 26, 27, 28, 29, 30
  30.                 Case Is <= 45
  31.                     UpdateArray 32, 33, 34, 35, 36
  32.                 Case Is <= 50
  33.                     UpdateArray 38, 39, 40, 41, 42
  34.                 Case Is <= 70
  35.                     UpdateArray 44, 45, 46, 47, 48
  36.                 Case Is <= 90
  37.                     UpdateArray 50, 51, 52, 53, 54
  38.                 Case Is < 100
  39.                     UpdateArray 56, 57, 58, 59, 60
  40.                 Case Is >= 45 And artest(lngrow, 2) < 100
  41.                     UpdateArray 62, 63, 64, 65, 66
  42.                 Case Is >= 50 And artest(lngrow, 2) < 100
  43.                     UpdateArray 68, 69, 70, 71, 72
  44.                 Case Is >= 50 And artest(lngrow, 2) < 150
  45.                     UpdateArray 74, 75, 76, 77, 78
  46.                 Case Is >= 60 And artest(lngrow, 2) < 100
  47.                     UpdateArray 80, 81, 82, 83, 84
  48.                 Case Is >= 70 And artest(lngrow, 2) < 100
  49.                     UpdateArray 86, 87, 88, 89, 90
  50.                 Case Is >= 50 And artest(lngrow, 2) < 500
  51.                     UpdateArray 92, 93, 94, 95, 96
  52.                 Case Is >= 100 And artest(lngrow, 2) < 500
  53.                     UpdateArray 98, 99, 100, 101, 102
  54.                 Case Is >= 100 And artest(lngrow, 2) < 300
  55.                     UpdateArray 104, 105, 106, 107, 108
  56.                 Case Is >= 300 And artest(lngrow, 2) < 500
  57.                     UpdateArray 110, 111, 112, 113, 114
  58.                 Case Is >= 100
  59.                     UpdateArray 116, 117, 118, 119, 120
  60.                 Case Is >= 500
  61.                     UpdateArray 122, 123, 124, 125, 126
  62.                 Case Is >= 500 And artest(lngrow, 2) < 1000
  63.                     UpdateArray 128, 129, 130, 131, 132
  64.                 Case Is >= 1000
  65.                     UpdateArray 134, 135, 135, 137, 138
  66.             End Select
  67.           Else
  68.          
  69.             UpdateArray 14, 15, 16, 17, 18
  70.             
  71.               Select Case artest(lngrow, 2)
  72.                 Case Is <= 15
  73.                     UpdateArray 140, 141, 142, 143, 144
  74.                 Case Is <= 20
  75.                     UpdateArray 146, 147, 148, 149, 150
  76.                 Case Is > 20
  77.                     UpdateArray 152, 153, 154, 155, 156
  78.                 Case Is >= 35
  79.                     UpdateArray 158, 159, 160, 161, 162
  80.               End Select
  81.             
  82.         End If
  83.     Next lngrow

  84. End Sub

  85.     Sub UpdateArray(ParamArray indices())

  86.         artbl(indices(0), 1) = artbl(indices(0), 1) + artest(lngrow, 2)
  87.         artbl(indices(1), 1) = artbl(indices(1), 1) + artest(lngrow, 3)
  88.         If artest(lngrow, 5) > 0 Then
  89.             artbl(indices(2), 1) = artbl(indices(2), 1) + artest(lngrow, 2)
  90.         Else
  91.             artbl(indices(3), 1) = artbl(indices(3), 1) + artest(lngrow, 2)
  92.         End If
  93.         If artest(lngrow, 6) = 0 Then
  94.             artbl(indices(4), 1) = artbl(indices(4), 1) + artest(lngrow, 3)
  95.         End If
  96.     End Sub
复制代码

TA的精华主题

TA的得分主题

 楼主| 发表于 2024-4-7 19:04 | 显示全部楼层
全部改成If then是完全运行得通,并且得到正确的结果,但有太多的If then,看着太麻烦了。
您需要登录后才可以回帖 登录 | 免费注册

本版积分规则

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

GMT+8, 2024-11-17 21:34 , Processed in 0.031922 second(s), 14 queries , Gzip On, MemCache On.

Powered by Discuz! X3.4

© 1999-2023 Wooffice Inc.

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

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

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