我有一个包含两列的报告。这两列被命名为“本月”或“上个月”。我正在尝试为“本月”中的数据单元格添加与“上个月”中的数据相关的背景颜色。
我熟悉使用 IIF 语句的动态颜色编码,但似乎无法弄清楚这一点。
下面,我尝试将 IIF 与 LOOKUP 命令一起使用,但我不确定我是否正确使用了此命令。任何帮助,将不胜感激。
=IIF(LOOKUP(Fields!Type.Value = "This Month", Fields!Type.Value, Fields!Count.Value, "ExecutiveFCAPS") < LOOKUP(
Fields!Type.Value = "Last Month", Fields!Type.Value, Fields!Count.Value, "ExecutiveFCAPS"), "LightGreen",
IIF(LOOKUP(Fields!Type.Value = "This Month", Fields!Type.Value, Fields!Count.Value, "ExecutiveFCAPS") = LOOKUP(
Fields!Type.Value = "Last Month", Fields!Type.Value, Fields!Count.Value, "ExecutiveFCAPS"), "Yellow",
IIF(LOOKUP(Fields!Type.Value = "This Month", Fields!Type.Value, Fields!Count.Value, "ExecutiveFCAPS") > LOOKUP(
Fields!Type.Value = "Last Month", Fields!Type.Value, Fields!Count.Value, "ExecutiveFCAPS"), "Orange", "Transparent")))