ExcelHome技术论坛

 找回密码
 免费注册

QQ登录

只需一步,快速开始

快捷登录

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

[求助] 用VBA数组或字典计算A列数字数字连续次数

[复制链接]

TA的精华主题

TA的得分主题

发表于 2018-6-21 12:18 | 显示全部楼层
[广告] VBA代码宝 - VBA编程加强工具 · VBA代码随查随用  · 内置多项VBA编程加强工具       ★ 免费下载 ★      ★使用手册
Option Explicit

Sub test()
  Dim i, j, a, n, arr
  arr = Range("a1:a" & Cells(Rows.Count, "a").End(xlUp).Row + 1)
  ReDim brr(1 To Rows.Count, 1 To 1)
  For i = 1 To UBound(arr, 1) - 1
    For j = i To UBound(arr, 1) - 1
      If Len(arr(j, 1)) > 0 Then a = j: Exit For
    Next
    For j = a To UBound(arr, 1) - 1
      If Len(arr(j + 1, 1)) = 0 Then
        n = n + 1: brr(n, 1) = j - a + 1
        i = j: Exit For
      End If
  Next j, i
  With [d1]
    .Resize(Rows.Count).ClearContents
    If n > 0 Then .Resize(n) = brr
  End With
End Sub

TA的精华主题

TA的得分主题

发表于 2018-6-21 13:09 | 显示全部楼层

  1. Sub Test()
  2.     Dim lngRows As Long, lngRow As Long
  3.     Dim arrSource As Variant, arrResult As Variant
  4.     Dim strCurr As String, strPre  As String
  5.     Dim lngCount As Long, lngID As Long
  6.    
  7.     lngRows = Sheet1.Range("A" & Rows.Count).End(xlUp).Row
  8.     arrSource = Sheet1.Range("A1:A" & lngRows)
  9.    
  10.     strPre = arrSource(1, 1)
  11.     lngID = 0
  12.     lngCount = 1
  13.     ReDim arrResult(1 To 2, 1 To 1)
  14.     For lngRow = 2 To lngRows
  15.         strCurr = arrSource(lngRow, 1)
  16.         If Trim(strPre) = "" And lngRow <> lngRows Then
  17.             strPre = strCurr
  18.             lngCount = 1
  19.         Else
  20.             If strCurr <> strPre Or lngRow = lngRows Then
  21.                 lngID = lngID + 1
  22.                 ReDim Preserve arrResult(1 To 2, 1 To lngID)
  23.                 arrResult(1, lngID) = IIf(lngRow = lngRows, strCurr, strPre)
  24.                 arrResult(2, lngID) = lngCount
  25.                 strPre = strCurr
  26.                 lngCount = 1
  27.             Else
  28.                 lngCount = lngCount + 1
  29.             End If
  30.         End If

  31.     Next
  32.    
  33.     arrResult = Application.WorksheetFunction.Transpose(arrResult)
  34.    
  35.     Sheet1.Range("D1").Resize(UBound(arrResult), 2) = arrResult
  36. End Sub
复制代码

TA的精华主题

TA的得分主题

发表于 2018-6-21 14:08 | 显示全部楼层

TA的精华主题

TA的得分主题

发表于 2018-6-21 14:09 | 显示全部楼层
本帖最后由 闻风上胆 于 2018-6-21 14:14 编辑

老师,麻烦你反向排列,谢谢您 !!
QQ图片20180621112323.png
QQ图片20180621112323.png

TA的精华主题

TA的得分主题

发表于 2018-6-21 14:09 | 显示全部楼层

TA的精华主题

TA的得分主题

发表于 2018-6-21 14:11 | 显示全部楼层
[广告] VBA代码宝 - VBA编程加强工具 · VBA代码随查随用  · 内置多项VBA编程加强工具       ★ 免费下载 ★      ★使用手册
lsdongjh 发表于 2018-6-21 14:09
什么意思?不明白你意思?

开始标错了,谢谢你老师!!
QQ图片20180621112323.png

TA的精华主题

TA的得分主题

发表于 2018-6-21 14:13 | 显示全部楼层
lsdongjh 发表于 2018-6-21 14:09
什么意思?不明白你意思?

最下面连续次数放在最上面,依此类推!!谢谢!!

TA的精华主题

TA的得分主题

发表于 2018-6-21 14:38 | 显示全部楼层
  1. Sub Test()
  2.     myCount '无参数或参数为0 ,正序
  3.    
  4.    ' myCount 1 '参数非零,倒序
  5. End Sub


  6. Function myCount(Optional intDirection As Integer = 0)
  7.     Dim lngRows As Long, lngRow As Long
  8.     Dim arrSource As Variant, arrResult As Variant, arrTemp As Variant
  9.     Dim strCurr As String, strPre  As String
  10.     Dim lngCount As Long, lngID As Long
  11.    
  12.     lngRows = Sheet1.Range("A" & Rows.Count).End(xlUp).Row
  13.     arrSource = Sheet1.Range("A1:A" & lngRows)
  14.    
  15.     strPre = arrSource(1, 1)
  16.     lngID = 0
  17.     lngCount = 1
  18.     ReDim arrResult(1 To 2, 1 To 1)
  19.     For lngRow = 2 To lngRows
  20.         strCurr = arrSource(lngRow, 1)
  21.         If Trim(strPre) = "" And lngRow <> lngRows Then
  22.             strPre = strCurr
  23.             lngCount = 1
  24.         Else
  25.             If strCurr <> strPre Then
  26.                 lngID = lngID + 1
  27.                 ReDim Preserve arrResult(1 To 2, 1 To lngID)
  28.                 arrResult(1, lngID) = strPre
  29.                 arrResult(2, lngID) = lngCount
  30.                 strPre = strCurr
  31.                 lngCount = 1
  32.             Else
  33.                 lngCount = lngCount + 1
  34.             End If
  35.             If lngRow = lngRows Then
  36.                 ReDim Preserve arrResult(1 To 2, 1 To lngID + 1)
  37.                 arrResult(1, lngID + 1) = strPre
  38.                 arrResult(2, lngID + 1) = lngCount
  39.             End If
  40.         End If

  41.     Next
  42.    
  43.     arrResult = Application.WorksheetFunction.Transpose(arrResult)
  44.    
  45.    
  46.     If intDirection <> 0 Then
  47.         arrTemp = arrResult
  48.         lngID = UBound(arrTemp)
  49.         For lngRows = LBound(arrTemp) To UBound(arrTemp)
  50.             arrResult(lngID - lngRows + LBound(arrTemp), 1) = arrTemp(lngRows, 1)
  51.         Next
  52.     End If
  53.    
  54.     Sheet1.Range("D1").Resize(UBound(arrResult), 2) = arrResult
  55. End Function
复制代码

TA的精华主题

TA的得分主题

发表于 2018-6-21 14:46 | 显示全部楼层

TA的精华主题

TA的得分主题

发表于 2018-6-21 14:47 | 显示全部楼层
您需要登录后才可以回帖 登录 | 免费注册

本版积分规则

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

GMT+8, 2024-12-26 15:19 , Processed in 0.032186 second(s), 8 queries , Gzip On, MemCache On.

Powered by Discuz! X3.4

© 1999-2023 Wooffice Inc.

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

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

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