D
dcrqueens
Can anyone help with combining group totals into a new IIF statement. I have
the following totals in my group footer:
1. (This give me the total # of loan approved in each
group)=Sum(Abs([Disposition]="Approved-Conforming" Or
[Disposition]="Approved-Exceptions" Or [Disposition]="Approved-Workout" Or
[Disposition]="Approved Not Accepted" Or [Disposition]="Override" Or
[Disposition]="Region"))
2. (Provides the total # of loans declined in each
group)=Sum(Abs([Disposition]="Declined" Or [DIsposition]="Withdrawn" Or
[Disposition]="Reversed" Or [Disposition]="Counter-Not Accepted" Or
[Disposition]="Pending Approval"))
3. (Provides the total # of loans decisioned for the region) =Count([Region
#])
4. (Provides total $ amount approved)
=Sum(IIf([Disposition]="Approved-Conforming" Or
[Disposition]="Approved-Exceptions" Or [Disposition]="Approved-Workout" Or
[Disposition]="Approved Not Accepted" Or [Disposition]="Counter-Not Accepted"
Or [Disposition]="Override" Or [Disposition]="Region",[Amount],0))
5. (Provides the total $ amount declined) =Sum(IIf([Disposition]="declined"
Or [Disposition]="Withdrawn" Or [Disposition]="Reversed" Or
[Disposition]="Pending Approval" Or [Disposition]="Counter-Not
Accepted",[Amount],0))
6. (Provides the total $ decisioned)=Sum([Amount])
All of these formulas work just fine for the groups. The problem that I now
have is that I want to know the sdame information as a grand total in the
report footer.. For instance Alabama has region 1,2,4,5,6 and I want to find
out how many of the loans are approved ( This can be several different
dispositions shown in item 1), declined and so on just as I did for group
totals. I have tried all week long and I have been unable to figure out how
to combine such a complex statement. Any help would be greatly appreciated.
the following totals in my group footer:
1. (This give me the total # of loan approved in each
group)=Sum(Abs([Disposition]="Approved-Conforming" Or
[Disposition]="Approved-Exceptions" Or [Disposition]="Approved-Workout" Or
[Disposition]="Approved Not Accepted" Or [Disposition]="Override" Or
[Disposition]="Region"))
2. (Provides the total # of loans declined in each
group)=Sum(Abs([Disposition]="Declined" Or [DIsposition]="Withdrawn" Or
[Disposition]="Reversed" Or [Disposition]="Counter-Not Accepted" Or
[Disposition]="Pending Approval"))
3. (Provides the total # of loans decisioned for the region) =Count([Region
#])
4. (Provides total $ amount approved)
=Sum(IIf([Disposition]="Approved-Conforming" Or
[Disposition]="Approved-Exceptions" Or [Disposition]="Approved-Workout" Or
[Disposition]="Approved Not Accepted" Or [Disposition]="Counter-Not Accepted"
Or [Disposition]="Override" Or [Disposition]="Region",[Amount],0))
5. (Provides the total $ amount declined) =Sum(IIf([Disposition]="declined"
Or [Disposition]="Withdrawn" Or [Disposition]="Reversed" Or
[Disposition]="Pending Approval" Or [Disposition]="Counter-Not
Accepted",[Amount],0))
6. (Provides the total $ decisioned)=Sum([Amount])
All of these formulas work just fine for the groups. The problem that I now
have is that I want to know the sdame information as a grand total in the
report footer.. For instance Alabama has region 1,2,4,5,6 and I want to find
out how many of the loans are approved ( This can be several different
dispositions shown in item 1), declined and so on just as I did for group
totals. I have tried all week long and I have been unable to figure out how
to combine such a complex statement. Any help would be greatly appreciated.