在我的水晶报告中,我需要为每列显示不同的标准来显示数据。 主要是日期范围。 例如。第1栏:标准“2012-01-01”和“2012-01-31”之间的日期 第2栏:标准日期小于'2012-01-31' 第3栏:标准日期等于'2012-01-15'
可以这样做吗? 请帮助我。 感谢。
答案 0 :(得分: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