Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

% over 200,00 formula

Status
Not open for further replies.

ChipF

Technical User
Nov 15, 2002
50
US
I have a large list of loans and I need a formula that shows what percent of the loans are over $200,000.
 
Hi !

Create two formulas.
The first one you place in the detail section
if {yourfield} > 200000 then
1
else
0


Place the other formula in the report footer like this:
WhilePrintingRecords;
(Sum({@formula1}) / Count({yourtable.loanid})) * 100
//(The count can be on any field in your detail section)

Hope it helps.

/Goran
 
Goran, I just wanted to say thanks for the help, this formula worked perfectly and will save me alot of time.

Chip
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top