两个数据库表,一个表有目标,一个表有完成值,怎么做report图表折线图完成比,对到每个人和组织
这个做数据过滤,然后去单元格数据源
多源报表实现数据过滤 https://help.fanruan.com/finereport/doc-view-3770.html
图表单元格数据源 https://help.fanruan.com/finereport/doc-view-175.html
用union all 把两个表合起来,“目标”和“完成值”作为系列来使用
select '目标' 系列,userno,departmentno,其他值字段 from 表1
union all
select '完成值' 系列,userno,departmentno,其他值字段 from 表2