I have two tables, master and compperfloat. I am using the record selection formula shown below:-
year({master.findate}) = 2002 and
month({master.findate}) = 10 and
{master.lender} <> 'AMC'
On the report page i have put {master.lender} one of the fields from the {master} table which returns 8922 rows which is correct.
Next to the {master.lender} field i have a field {float} with this formula:-
if {CompPerFLOAT.Month} = '10' and
{CompPerFLOAT.Year} = '2002' and
{CompPerFLOAT.ApptoTeam} = 'N' then {CompPerFLOAT.Lnamnt} else 0
What i want to do is only display the result from the above formula once per different lender so I can then group by {master.lender} and produce an overall total for the formula field.
Is there an easy way to achieve this?
year({master.findate}) = 2002 and
month({master.findate}) = 10 and
{master.lender} <> 'AMC'
On the report page i have put {master.lender} one of the fields from the {master} table which returns 8922 rows which is correct.
Next to the {master.lender} field i have a field {float} with this formula:-
if {CompPerFLOAT.Month} = '10' and
{CompPerFLOAT.Year} = '2002' and
{CompPerFLOAT.ApptoTeam} = 'N' then {CompPerFLOAT.Lnamnt} else 0
What i want to do is only display the result from the above formula once per different lender so I can then group by {master.lender} and produce an overall total for the formula field.
Is there an easy way to achieve this?