如何过滤掉行组中的空组

How to filter out null groups in a Row Group

我想知道是否有人能够帮助我删除我拥有的行组中的任何空组

STATUS    |  1  |  2  |  3  |
-----------------------------
          | 554 | 564 | 132 |
-----------------------------
Status 1  | 489 | 784 | 315 |

我想让我的行组过滤掉那个空白状态。有人知道实现此目标的最佳方法吗?

您应该能够根据 =IIF(IsNothing(Field!Status.Value),True,False)

这样的表达式设置行可见性

当然,如果您没有在其他任何地方显示数据,我建议您在查询中将其过滤掉。

select status, otherField, yetAnotherField from someTable where status <> null

希望对您有所帮助!