在Excel数据透视表中将时间戳转换为日期

时间:2017-05-10 10:23:38

标签: excel date group-by pivot-table excel-2016

我有一个数据透视表,目前看起来像这样:

                                  No of Sales  
 Team 1
     2017-03-10T07:10:20.289Z     1
     2017-03-10T07:10:22.289Z     4
     2017-03-14T07:08:20.289Z     10

 Team 2
     2017-03-11T07:14:20.289Z     11

我想按时间戳中的日期分组,只显示当天的日期和总数,所以它看起来像这样:

                                  No of Sales  
 Team 1
     2017-03-10                   5
     2017-03-14                   10

 Team 2
     2017-03-11                   11

我该怎么做?

1 个答案:

答案 0 :(得分:0)

你可以完成其余的代码,但重要的部分是:

strTemp= cells(row, col).value 'this contains the date 2017-03-10T07:10:20.289Z 

strDate = split(strTemp, "T")(0)

那就是它。