I have a crosstab report based on SQL query. I have summarized days operating and days standby (rows) and months (columns). At the end of the report, I want to create a formula that computes the days utilized each month as follows
01/2005 02/2005
Days Operating 25 18
Days Standby 2 3
Total Days 27 21
Days Utilized 87% 75%
Where days utilized is the Total Days / Days in Month.
How do you this, and do you have to do this for each month, ie Jan has 31 days, Feb has 28 days, Mar has 31 days, etc. Since my crosstab report is being summarized by the column value on the month, I'm not sure how to accomplish this.
01/2005 02/2005
Days Operating 25 18
Days Standby 2 3
Total Days 27 21
Days Utilized 87% 75%
Where days utilized is the Total Days / Days in Month.
How do you this, and do you have to do this for each month, ie Jan has 31 days, Feb has 28 days, Mar has 31 days, etc. Since my crosstab report is being summarized by the column value on the month, I'm not sure how to accomplish this.