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 strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Hide Records?

Status
Not open for further replies.

dido

Programmer
Sep 27, 2002
9
GB
I have a field called increase which is from a formula base on one formula over another. (i.e. Amount 1/Amount 2).

This is placed in the group footer. How can I only show records where the increase is great than 10.

The formula is not an option in the select expert.
 
Conditionally suppress the field based on its value.

Under format field in the suppress condition:

(Amount 1/Amount 2) < 10
 
Your formula should be available in a record selection formula. Please post your formula so we can see it. Software Sales, Training and Support for Macola, Crystal Reports and Goldmine
dgilsdorf@mchsi.com
 
The formula is

Increase = {@RunningSumTo}/{@RunningSumFrom}

RunningSumTo =
WhilePrintingRecords;
Global NumberVar RunningSumTo := RunningSumTo + {@YearToAmount};

RunningSumFrom =
WhilePrintingRecords;
Global NumberVar RunningSumFrom := RunningSumFrom + {@YearFromAmount};

I have been able to select the records by manually typing in the formula. 'RunningSumTo' and 'RunningSumFrom' both appear on the select expert, but the formula 'Increase' does not appear on the list!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top