1

我要一份报告。报告格式如下:

Thana Good Removed NotFound

A     2     3        4

B      1     0       4

C      1     4       5

Total  4      7      13

我的数据库数据上有三种类型GOOD, 。格式如下:RemovedNotFound

A GOOD
A GOOD
B NotFound
C Removed
B GOOD

如何比较字符串?在比较之后如何计算A 类型Good是 2?

4

2 回答 2

2

您可以在表达式中使用 Iif 语句。

例如:

=Iif(Fields!Good.Value = 1, "GOOD IS 1", "GOOD IS NOT 1")

或者

=Iif(Fields!Good.Value > Fields!Removed.Value, "Good is larger than removed", "Good is smaller or equal to removed")
于 2009-06-16T14:04:33.807 回答
0

你应该看看这里:http: //msdn.microsoft.com/en-us/library/ms159673 (SQL.90).aspx

在你的情况下,如果我理解正确,你会想使用 Sum

于 2009-06-16T13:19:38.173 回答