用过value但是好像只能用一个条件,select函数写一直不对。求解答
js:var value = FR.remoteEvaluate("report_各服务项目使用人数.select(val,VIP等级 = '"+this.category+"' && 服务项目名称 = '"+this.seriesName+"')");
类似这样吧,你在数据集把ds3,分类与系列字段拼成一个字段,最后在下面用map函数转换出来
var cl = this.category+this.seriesName;
var sql = "map('"+cl+"','ds3',1,3)";
var value = FR.remoteEvaluate(sql);
--------------------------------
remoteEvaluate里面不支持select函数的使用