如何实现第二个图的效果 每月月均就是每个月的最后一天的月均的数据
参考一下,A3单元格自定义分组,B3单元格的条件属性。
最大值.cpt
你第二个图的一月份月均第一个数怎么来的,数据是有多行的横向的对应标题是什么啊
用sql做吧
select 月份, 月均 from 表名 where 日期 in ( SELECT max(日期) FROM 表名 group by 月份 ) ${if(len(start_date)==0,""," and 月份 >= '"+start_date+"' ")} ${if(len(end_date)==0,""," and 月份 <= '"+end_date+"' ")} -- start_date 和 end_date 是查询控件