内置校验-https://help.fanruan.com/finereport/doc-view-567.html
你想怎么校验?
在录入的时候进行判断和对当前行的单元格进行赋值操作
var row = FR.cellStr2ColumnRow(this.options.location).row + 1;//获取单元格当前行号
var choose = _g().getCellValue("A"+row, null);
if(choose>10){
_g().setCellValue('D'+row,null,"超额");
}
else{
_g().setCellValue('D'+row,null,"未超额");
如果校验只在自己这一行之内,你这数据肯定也是查询扩展出来的,就正常单元格之间判断即可