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!

suppressing sections error

Status
Not open for further replies.

AyJayEL

Technical User
Jan 30, 2001
425
GB
I have quite a complex letter that looks at whether a child is withdrawn from testing, has a qualifying score or has not qualified. Then different paragraphs (sections) are suppressed or shown depending on the score or whether they are withdrawn.

It works fine until it comes across a child that is withdrawn from testing then it won't show the sections after section Di until it gets to the last section (Dp).

Every letter after that is incorrect except for the Withdrawn letters!

Anyone got any ideas? Learn something new every day *:->*
AyJayEl
 
Can you post the suppression formula on those sections that are not displaying when you think that they should?

ro Rosemary Lieberman
rosemary@microflo.com, Microflo provides expert consulting on MagicTSD and Crystal Reports.
 
{@noletter}="not complete" is suppression in one of the details.

{TRANSFERS.WITHDRAWN_TESTING}=&quot;T&quot; or {@noletter} = &quot;not complete&quot;or{@score}<121 is another.

This is the @noletter formula;- (I am declaring and resetting this formula in the group header for the child).

whileprintingrecords;
shared stringvar nolett;
if {TRANSFERS.WITHDRAWN_TESTING}='T' then nolett:=
&quot;withdrawn&quot;
else
if {@result1}=0 or {@result2}=0 or {@result3}=0 then nolett:=
&quot;not complete&quot;
else nolett:=
&quot;score&quot;;
nolett

(I forgot the mention the not complete in the previous posting).
Learn something new every day *:->*
AyJayEl
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top