Is it possible to utilize values that are generated in the report, not associated with the entity?
For instance, in one row, I calculate the Monthly Average number of occurrences for each column in the report. I then would like to find the total average.
____________________________________________________________________________________
| Month | [=Fields.Name] | Total |
---------------------------------------------------------------------------------------------------------------------------------------
| [=Field.Date*] | [=Count(Fields.Id)] | [=Count(Fields.Id)] | ---------------------------------------------------------------------------------------------------------------------------------------
| Total | [=Count(Fields.Id)] | [=Count(Fields.Id)] | ---------------------------------------------------------------------------------------------------------------------------------------
| Monthly | [=CDbl(Count(Fields.Id)) / | Need Help |
| Average | CDbl(CountDistinct(Fields.Date.Month))] | Here |
---------------------------------------------------------------------------------------------------------------------------------------
Notes:
* Formatted By Month
The problem arises in that an object in the column may not operate on a given month so I don't include it in the average. My goal, essentially is to find the average of the Monthly Averages, but I cannot figure out how to access the row's data.
For instance, in one row, I calculate the Monthly Average number of occurrences for each column in the report. I then would like to find the total average.
____________________________________________________________________________________
| Month | [=Fields.Name] | Total |
---------------------------------------------------------------------------------------------------------------------------------------
| [=Field.Date*] | [=Count(Fields.Id)] | [=Count(Fields.Id)] | ---------------------------------------------------------------------------------------------------------------------------------------
| Total | [=Count(Fields.Id)] | [=Count(Fields.Id)] | ---------------------------------------------------------------------------------------------------------------------------------------
| Monthly | [=CDbl(Count(Fields.Id)) / | Need Help |
| Average | CDbl(CountDistinct(Fields.Date.Month))] | Here |
---------------------------------------------------------------------------------------------------------------------------------------
Notes:
* Formatted By Month
The problem arises in that an object in the column may not operate on a given month so I don't include it in the average. My goal, essentially is to find the average of the Monthly Averages, but I cannot figure out how to access the row's data.