用公式如何从数据集中获取A列值不为零的行数?
count(数据集名.select(字段名,条件)),如:count(ds1.select(A,A!=0))
参考:ds1.select()和ds1.group()函数的使用-http://help.finereport.com/doc-view-850.html
select count(A) as 行数 from 表 where A!=0
sql(“数据集名字”,“selcet count(A) from table where A!=0”,1,1)