I was hoping someone could help me with this problem Im having:
Currently, I have a report that lists the loan number multiple times based on status, ex:
loan # 123456 loan amt 100,000 status in
loan # 123456 loan amt 100,000 status suspended
loan # 123456 loan amt 100,000 status completed
The report wants to look at all loans in the database that has an in status but not a complete status. The way I currently do this is to group by loan number and do a formula at the detail level, if status = in then 1 else if status = complete then -1000. I do a sum based on this and put a group selection criteria on the report to show if the sum of the formula is >0.
This causes the report to go through all records in the database and usually times out.
Is there a more efficient way to do this?
I would appreciate any assistance with this.
Thank you!
Currently, I have a report that lists the loan number multiple times based on status, ex:
loan # 123456 loan amt 100,000 status in
loan # 123456 loan amt 100,000 status suspended
loan # 123456 loan amt 100,000 status completed
The report wants to look at all loans in the database that has an in status but not a complete status. The way I currently do this is to group by loan number and do a formula at the detail level, if status = in then 1 else if status = complete then -1000. I do a sum based on this and put a group selection criteria on the report to show if the sum of the formula is >0.
This causes the report to go through all records in the database and usually times out.
Is there a more efficient way to do this?
I would appreciate any assistance with this.
Thank you!