cancel
Showing results for 
Search instead for 
Did you mean: 

Passing Parameter to sub report from detail section of Main report

Former Member
0 Kudos

I am new to CR

I am developing a CR for Clinical Lab Test. My main report have four field i.e

1. Test Code

2. Test Name

3. Result Value

4. Normal Values

This report has sub report in Page Footer. When TestCode = 18 or 19 It has to show a normal value table in Page footer of that page. Other wise this table should not appear on page footer.

Please help me

Accepted Solutions (1)

Accepted Solutions (1)

former_member230846
Contributor
0 Kudos

Hi Qasim,

I believe your conditional suppression formula on the Page Footer section should be similar to:

if {testcode.field} = 18 or {testcode.field} = 19 then FALSE

else

TRUE

The above will show the Page Footer if it equals 18 or 19, otherwise it will suppress it.

Regards,

Wallie

Former Member
0 Kudos

Thanks for solving my problem

Regards

Qasim Ali

Former Member
0 Kudos

Thanks for help.

it is working only when Test Id=18 or 19 is the last record of that page. If this record is not the last record(i.e it is in the start of the page or middle) then Page footer does not display.

Please help

Qasim Ali

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi Qasim,

Go in Section Expert and select the page footer. You will find Suppress in right side of the window, go in formula editor and give the follwoing formula :

If Testcode<> 18  or Testcode <> 19 Then true

Thanks,

Sastry

Edited by: Sastry Duvvuri on Oct 14, 2008 7:10 PM