我有一个数据透视表,我按月过滤数据。问题是我需要所有月份的总列数。有可能以某种方式忽略选择列被过滤?或者也许有一种方法可以使用计算字段来实现它。
示例:
VisibleRegion visibleRegion = googleMap.getProjection().getVisibleRegion();
Point x = googleMap.getProjection().toScreenLocation(visibleRegion.farRight);
Point y = googleMap.getProjection().toScreenLocation(visibleRegion.nearLeft);
Point centerPoint = new Point(x.x / 2, y.y / 2);
LatLng centerFromPoint = googleMap.getProjection().fromScreenLocation(centerPoint);
long longitude = centerFromPoint.longitude;
long latitude = centerFromPoint.latitude;
我使用过滤器:October 500 clicks
November 600 clicks
December 1000 clicks
我得到一张桌子:
November
使用此过滤器后我想要的是什么:
google | 600