ExcelHome技术论坛

 找回密码
 免费注册

QQ登录

只需一步,快速开始

快捷登录

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

[求助] 在数据透视表里如何按时间段分组

[复制链接]

TA的精华主题

TA的得分主题

发表于 2010-12-3 16:31 | 显示全部楼层 |阅读模式
[广告] Excel易用宝 - 提升Excel的操作效率 · Excel / WPS表格插件       ★免费下载 ★       ★ 使用帮助
00:00:12.00                        1                1
00:00:13.00        1                                1
00:00:14.00                1                        1
00:00:15.00        1                                1
00:00:16.00                                1        1
00:00:17.00        1                                1
00:00:18.00                        1                1
00:00:19.00        1                                1
00:00:21.00        1                                1
00:00:22.00                1                        1
00:00:24.00                                1        1
00:00:25.00        1                                1
00:00:26.00                        1                1


上面是数据透视表的一部分,我想以每五秒进行分组。VBA代码怎么写呀?我是新手,请大家多多关注哦!

TA的精华主题

TA的得分主题

发表于 2010-12-3 16:34 | 显示全部楼层

TA的精华主题

TA的得分主题

发表于 2010-12-3 16:42 | 显示全部楼层

TA的精华主题

TA的得分主题

 楼主| 发表于 2010-12-3 23:33 | 显示全部楼层

回复 3楼 fengbin7506 的帖子

由于我的excel数据需要从外部导入,所以可能发附件了也不能运行。我把建立这个数据透视表的代码发上来了,我想在这基础上把时间按每五秒分组。谢谢你帮助我!
Dim WSD As Worksheet
    Dim PTCache As PivotCache
    Dim PT As PivotTable
    Dim PRange As Range
    Dim FinalRow As Long
    Set WSD = Worksheets("PivotTable")
        
    ' Delete any prior pivot tables
    For Each PT In WSD.PivotTables
        PT.TableRange2.Clear
    Next PT
    WSD.Range("M1:Z1").EntireColumn.Clear
   
        
    ' Define input area and set up a Pivot Cache
    FinalRow = WSD.Cells(Application.Rows.Count, 1).End(xlUp).Row
    FinalCol = WSD.Cells(1, Application.Columns.Count). _
        End(xlToLeft).Column
    Set PRange = WSD.Cells(1, 1).Resize(FinalRow, FinalCol)
    Set PTCache = ActiveWorkbook.PivotCaches.Add(SourceType:= _
        xlDatabase, SourceData:=PRange.Address)
   
    ' Create the Pivot Table from the Pivot Cache
    Set PT = PTCache.CreatePivotTable(TableDestination:=WSD. _
        Cells(2, FinalCol + 2), TableName:="PivotTable1")
   
    ' Turn off updating while building the table
    PT.ManualUpdate = True
   
    ' Set up the row & column fields
    PT.AddFields RowFields:="时刻", _
        ColumnFields:="车型"
   
    ' Set up the data fields
    With PT.PivotFields("数量")
        .Orientation = xlDataField
        .Function = xlSum
        .Position = 1
    End With
   
    ' Calc the pivot table
    PT.ManualUpdate = False
    PT.ManualUpdate = True
   
    WSD.Activate
    Range("M1").Select
    End sub

TA的精华主题

TA的得分主题

 楼主| 发表于 2010-12-3 23:35 | 显示全部楼层

回复 2楼 wisp 的帖子

我希望用VBA来实现的哦。不过还是谢谢你帮助我!
您需要登录后才可以回帖 登录 | 免费注册

本版积分规则

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

GMT+8, 2024-11-30 02:49 , Processed in 0.046474 second(s), 9 queries , Gzip On, MemCache On.

Powered by Discuz! X3.4

© 1999-2023 Wooffice Inc.

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

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

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