我是水晶报告的新手。我需要在记录选择公式中添加一个嵌套 if 语句
原版是这样的
if {?Company}<>0 then {HQCO.HQCo}={?Company} else 1=1 and
if {?Job}<>'zzzzz' then {udJobEmp.Job}={?Job} else 1=1 and
if {?Employee}<>0 then {udJobEmp.Employee}={?Employee} else 1=1
但我需要使用嵌套 if 语句,我尝试做这样的事情,但这是不对的。
if ({?Company}<>0 then if
({?Job}<>'zzzzz' then if
( {?Employee}<>0 then {udJobEmp.Employee}={?Employee} then {udJobEmp.Job}={?Job} then {HQCO.HQCo}={?Company} else 1=1)else 1=1)else1=1)
谢谢