Hi there,
I am using CR 9 and using MS SQL.
I am having a problem keeping similar records in a group. Example:
I have 2 clients, each with 2 accounts. I need to measure each account to ensure it is within its tolerance range. I have one record per account and the data is similar to the following example:
Account1 | ClientA | 0
Account2 | ClientA | 1
Account3 | ClientB | 0
Account4 | ClientB | 0
The value for each account is evaluated to see if it is within tolerance range and the first group of the report groups by either outside tolerance range or within.
Grouping should be as follows:
Tolerance {"outside" or "within"}
Client Name
<Details> Account data
Assuming that a value greater than zero is outside of a tolerance range, the results should be as follows:
Outside of range
Client A
Account 1
Account 2
Totals for Client A
Within Range
Client B
Account 3
Account 4
Totals for Client B
Even though Account 1 is within tolerance, because a record for the client is out of tolerance and all records must remain under the client, account 1 will fall under the out of tolerance group.
I have tried a number of different methods to group by tolerance result including using manual running totals and I can not seem to get this to work.
I apologize in advance for the long winded question!
I am using CR 9 and using MS SQL.
I am having a problem keeping similar records in a group. Example:
I have 2 clients, each with 2 accounts. I need to measure each account to ensure it is within its tolerance range. I have one record per account and the data is similar to the following example:
Account1 | ClientA | 0
Account2 | ClientA | 1
Account3 | ClientB | 0
Account4 | ClientB | 0
The value for each account is evaluated to see if it is within tolerance range and the first group of the report groups by either outside tolerance range or within.
Grouping should be as follows:
Tolerance {"outside" or "within"}
Client Name
<Details> Account data
Assuming that a value greater than zero is outside of a tolerance range, the results should be as follows:
Outside of range
Client A
Account 1
Account 2
Totals for Client A
Within Range
Client B
Account 3
Account 4
Totals for Client B
Even though Account 1 is within tolerance, because a record for the client is out of tolerance and all records must remain under the client, account 1 will fall under the out of tolerance group.
I have tried a number of different methods to group by tolerance result including using manual running totals and I can not seem to get this to work.
I apologize in advance for the long winded question!