我需要在Red
和fields!Date.Value = "Sunday"
以及fields!start.Value > 22
时将report.rdlc的颜色更改为fields!finish.value < 5
。
我试着用
=IIf(Hour(fields!start.Value) > 22,"Red","Black")
但我不知道我是如何处理其他案件的。我现在开始报告表达式。
答案 0 :(得分:4)
它应该与任何其他逻辑表达式非常相似。只需将所有条件分组在括号中,如果它们都是真的,则会发生这种情况,所以对于你的情况,试试这个......
=IIf(()Hour(fields!start.Value) > 22) AND
(Hour(fields!start.Value) < 5) AND
(fields!Date.Value = "Sunday")),"Red","Black")