0

在我的水晶报告中,我需要为每一列提供不同的标准来显示数据。主要是日期范围。例如。第 1 列:标准日期介于“2012-01-01”和“2012-01-31”之间 列 2:标准日期小于“2012-01-31”第 3 列:标准日期等于“2012-01-15”

是否有可能做到这一点?请帮助我。谢谢。

4

1 回答 1

1

对于 column0,只需将 {table.amount} 字段添加到画布。

然后添加这些公式字段:

//{@column1}
If {table.date} = Date(2012,1,1) Then {table.amount} Else 0

//{@column2}
If {table.date} IN Date(2012,1,1) TO Date(2012,1,31) Then {table.amount} Else 0

//{@column3}
If {table.date} < Date(2012,1,31) Then {table.amount} Else 0
于 2012-05-03T12:14:46.437 回答