if {field 1}>0 then "Monday"
else if isnull({field 1}) then
If {field 2}>0 then "Wednesday"
else if isnull({Wednesday}) then "Test"
该报告链接到excel电子表格和sql表。 sql表是用于公式的数据所在的表。
我收到的唯一结果是星期一。字段2中有数字。
预先感谢您的帮助。如果格式或位置不正确,请原谅。
答案 0 :(得分:0)
这是一个远景,但请尝试以下操作:
if not isnull({field 1}) and {field 1}>0 then "Monday" //only changed this line
else if isnull({field 1}) then
If {field 2}>0 then "Wednesday"
else if isnull({Wednesday}) then "Test"
水晶不喜欢面对空东西。