Hello,
I'm using CR9 and I'm fairly new to crystal.
I have a crosstab on a report where I'm showing top 5 classes (sorted by the 'All' column) like so:
Pay Direct All
class1 6.6% 9.3%
class2 9.3% 8.8%
class3 8.0% 7.9%
class4 5.6% 6.7%
class5 7.8% 6.2%
This crosstab is used as a comparison between one client ('Pay Direct' column) and all clients. I accomplished this part using the following formula for column in the crosstab expert, sorted descending (Basic syntax):
@ClientCompare:
If {Command.INS} = {?a_client} Then
formula = "Pay Direct"
Else
formula = "All"
End If
For the summarized field in the crosstab expert, I'm using percentage of sum on the following formula:
@ClientCompareClassTotal:
If {@ClientCompare} = "Pay Direct" Then
formula = {@ClientClassTotal}
Else
formula = {@ClientClassTotal} + {@ClassPaidAmtNoBlanks}
End If
Here are the formulas that this formula references (complicated, but I found it necessary for filtering by client):
@ClientClassTotal:
If {@ClientCompare} = "Pay Direct" Then
formula = {@ClassPaidAmtNoBlanks}
End If
@ClassPaidAmtNoBlanks (Used to strip out unclassified rows by setting them to 0, since their amounts are big enough to appear in the top 5 which we don't want to see):
If Trim({Command.CLASS}) <> "Unclassified" Then
formula = {Command.PAID_AMT}
Else
formula = 0
End If
The problem is that the percentage in the 'All' column is inaccurate and changes based on the amount in the 'Pay Direct' column. The number displayed in the 'All' column looks to be 'all others'. This becomes obvious as I increase the time length of the report (Tested for 1 month, needs to run for 1 year).
More points of note:
- the report is based on a SQL query instead of table joins for performance and aggregation reasons, so SQL expression fields are not possible.
- This crosstab is one of many parts on this report. All of the data that I get from my query is needed somewhere on the report, so record filtering is not possible. I even need the amounts in the 'Unclassified' columns, which is why I'm filtering them at the crosstab level and not in the SQL query.
- Initially, I tried to do this crosstab in a subreport using the parameters from the main report, but for some reason it wouldn't show up in the main report for me. I'm open to trying it again if that's the solution.
- I tried the technique above using a specified order for the column and using the row total as the 'All' column. The total column would display the right amount, but I would need to figure out how to suppress the 'Others' column without affecting the total column for that solution to work. If this is doable, let me know.
Thanks in advance,
Mike
I'm using CR9 and I'm fairly new to crystal.
I have a crosstab on a report where I'm showing top 5 classes (sorted by the 'All' column) like so:
Pay Direct All
class1 6.6% 9.3%
class2 9.3% 8.8%
class3 8.0% 7.9%
class4 5.6% 6.7%
class5 7.8% 6.2%
This crosstab is used as a comparison between one client ('Pay Direct' column) and all clients. I accomplished this part using the following formula for column in the crosstab expert, sorted descending (Basic syntax):
@ClientCompare:
If {Command.INS} = {?a_client} Then
formula = "Pay Direct"
Else
formula = "All"
End If
For the summarized field in the crosstab expert, I'm using percentage of sum on the following formula:
@ClientCompareClassTotal:
If {@ClientCompare} = "Pay Direct" Then
formula = {@ClientClassTotal}
Else
formula = {@ClientClassTotal} + {@ClassPaidAmtNoBlanks}
End If
Here are the formulas that this formula references (complicated, but I found it necessary for filtering by client):
@ClientClassTotal:
If {@ClientCompare} = "Pay Direct" Then
formula = {@ClassPaidAmtNoBlanks}
End If
@ClassPaidAmtNoBlanks (Used to strip out unclassified rows by setting them to 0, since their amounts are big enough to appear in the top 5 which we don't want to see):
If Trim({Command.CLASS}) <> "Unclassified" Then
formula = {Command.PAID_AMT}
Else
formula = 0
End If
The problem is that the percentage in the 'All' column is inaccurate and changes based on the amount in the 'Pay Direct' column. The number displayed in the 'All' column looks to be 'all others'. This becomes obvious as I increase the time length of the report (Tested for 1 month, needs to run for 1 year).
More points of note:
- the report is based on a SQL query instead of table joins for performance and aggregation reasons, so SQL expression fields are not possible.
- This crosstab is one of many parts on this report. All of the data that I get from my query is needed somewhere on the report, so record filtering is not possible. I even need the amounts in the 'Unclassified' columns, which is why I'm filtering them at the crosstab level and not in the SQL query.
- Initially, I tried to do this crosstab in a subreport using the parameters from the main report, but for some reason it wouldn't show up in the main report for me. I'm open to trying it again if that's the solution.
- I tried the technique above using a specified order for the column and using the row total as the 'All' column. The total column would display the right amount, but I would need to figure out how to suppress the 'Others' column without affecting the total column for that solution to work. If this is doable, let me know.
Thanks in advance,
Mike