获取单元格值使用js去判断,,,公式里面的判断你自己改成你的路径和报表名称就可以了
if($$$="A","/webroot/decision/view/report?viewlet=GettingStarted.cpt&op=write",if($$$="B","/webroot/decision/view/report?viewlet=test222.cpt&op=write",if($$$="C","/webroot/decision/view/report?viewlet=cctss.cpt&op=write","/webroot/decision/view/report?viewlet=dddtx.cpt&op=write")))


var url3 = encodeURI(encodeURI(url));
//窗体
var $iframe = $("<iframe id='inp' name='inp' width='100%' height='100%' scrolling='no' frameborder='0'>");
//将窗体的src属性设置为模板路径
$iframe.attr("src", url3);
//窗体的属性
var o = { title: "对话框",
//标题
width: 750,
//宽度
height: 420,
//高度
};
//弹出窗体
FR.showDialog(o.title, o.width, o.height, $iframe, o);