Okay, I apologize. I have the subreport created and grouped by {@Quarterly}:
if datepart("q",{ADDITIONAL_LOAN_DATA.ApplicationCreationDateTimeInAvista}) = 1 then "1st Qtr"
else
if datepart("q",{ADDITIONAL_LOAN_DATA.ApplicationCreationDateTimeInAvista}) = 2 then "2nd Qtr"
else
if datepart("q",{ADDITIONAL_LOAN_DATA.ApplicationCreationDateTimeInAvista}) = 3 then "3rd Qtr"
else
if datepart("q",{ADDITIONAL_LOAN_DATA.ApplicationCreationDateTimeInAvista}) = 4 then "4th Qtr"
For this group, I've inserted Count ({LOAN_GENERAL.LenderRegistrationIdentifier}, {@Quarterly}) to give me the # of loans for each quarter.
I've also created a formula PercentOfCount ({LOAN_GENERAL.LenderRegistrationIdentifier}, {@Quarterly}) to give me the % of loans for each quarter.
I know need to determine what percentage of loans that have a "flipped date" for each quarter which is represented by the formula: If {CUSTOM_FIELD.AttributeUniqueName} = "Pre-Approval Flip Date" then {@DateValue}
{@DateValue} = DateValue({CUSTOM_FIELD.AttributeValue})
How can I do this?