现在有用户的销额数据,字段名称为 [用户] [销额]。现在想要统计每个销额区间内的客户数量,比如1-1000元销额区间内有10个用户,1000-2000元销额区间内有12个用户,如何用FineBI做饼图?
图表分组(自定义分组)-https://help.fanruan.com/finebi/doc-view-233.html
======
查阅此文档,问题将不再是问题;
在sql里面用
select a.区间段, count(a.用户) from ( select 用户, case when 销额>=1 and 销额<=1000 then "1-1000" when 销额>1000 and 销额<=2000 then "1000-2000" .... end 区间段 from table ) a group by a.区间段
定义每个区间段 然后在做饼图