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

Suggestion on Grouping

Status
Not open for further replies.

dadazs

Technical User
Oct 29, 2010
37
GB
Hello

I have a formula that looks like:

if (distinctcount({ttcalls.calltype},{ttcalls.empID}) = 2 and (count({ttcalls.calltype},{ttcalls.empID}) = 2 or count({ttcalls.calltype},{ttcalls.empID}) = 4)) and (({ttCalls.calltype}=1 and next({ttCalls.calltype})=2) ) then
"n/a" else
"wrong"


My purpose is to show records where value is wrong. I cannot group on this value because I get an error saying "This formula cannot be used because it must be evaluated later"

Please advise
 
Use the formula in section suppression

In the section suppression formula box

{@yourformula} <> "wrong"

If you need to do any counts or summaries you will need to use similar condition in the Running Total set up box

In this case the evaluation formula will be

{@yourformula} = "wrong"

Ian
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top