rbh123456789
Technical User
CR 11.5
I have a crosstab which the columns are summarized by a date(month), and there are 2 summarized fields
1. Number of Applications Received
//the CT performs a DistinctCount on the CaseID (aka ID), which tells you how many applications were received
2. Number of Applications Self-Represented
//the CT contains a RT for this summary. The Running Total performs a DistinctCount, Summarizes the CaseID(aka ID), Resets on the change of Group (the month) and has an Evaluate formula of:
//RT Formula
(
isnull(maximum({@blank},{temp_rep_app.id})) or
trim(maximum({@blank},{temp_rep_app.id})) = ""
)
//
I want to add a Percentage to the Crosstab, which will calculate the % of Applications that were Self-Represented.
I have tried, but i keep getting errors about 'Not being able to summarize a Running Total'
Any help would be appreciated.
I have a crosstab which the columns are summarized by a date(month), and there are 2 summarized fields
1. Number of Applications Received
//the CT performs a DistinctCount on the CaseID (aka ID), which tells you how many applications were received
2. Number of Applications Self-Represented
//the CT contains a RT for this summary. The Running Total performs a DistinctCount, Summarizes the CaseID(aka ID), Resets on the change of Group (the month) and has an Evaluate formula of:
//RT Formula
(
isnull(maximum({@blank},{temp_rep_app.id})) or
trim(maximum({@blank},{temp_rep_app.id})) = ""
)
//
I want to add a Percentage to the Crosstab, which will calculate the % of Applications that were Self-Represented.
I have tried, but i keep getting errors about 'Not being able to summarize a Running Total'
Any help would be appreciated.