I have a cross tab that is giving strange totals.
The dataset contains a field named receiveDate. It can either have a value or not. I want to total each column with these values.
I have created 2 formula fields.
@Received =
If Not IsNull({receiveDate})or({receiveDate}<>Date(0,0,0)) Then 1
@Outstanding =
If IsNull({receiveDate}) or ({receiveDate} = Date(0,0,0)) Then 1
First of all, is the way to handle this. Second, how should they appear in the cross tab grid.
This is how the cross tab should look at the summation point. L is the total of values in the column. That works.
R is the values with date values... that seems to be ok...
O is outstanding... that value is wrong sometimes....
Total L: 16
Total R: 7
Total O: 9
The dataset contains a field named receiveDate. It can either have a value or not. I want to total each column with these values.
I have created 2 formula fields.
@Received =
If Not IsNull({receiveDate})or({receiveDate}<>Date(0,0,0)) Then 1
@Outstanding =
If IsNull({receiveDate}) or ({receiveDate} = Date(0,0,0)) Then 1
First of all, is the way to handle this. Second, how should they appear in the cross tab grid.
This is how the cross tab should look at the summation point. L is the total of values in the column. That works.
R is the values with date values... that seems to be ok...
O is outstanding... that value is wrong sometimes....
Total L: 16
Total R: 7
Total O: 9