【工作效率】写了一个条件属性 当len(出勤时长)或者len(投入时长)=0时 工作效率为0 然后【序号】写的也是条件属性 新值:seq() 但是怎么设置可以把上面的两个0.00% 排序到最后
直接在sql里面处理 吧工作效率算出来 就行了 新值不参与计算的
select chuqin, touru, case when chuqin is null then 0 when touru is null then 0 else touru/chuqin end as 效率 from table
sql里排下序,order by 排序字段 nulls last试试
建议在sql内计算 工作效率,然后在sql排序
排序FAQ-https://help.fanruan.com/finereport/doc-view-3928.html
——————————