Basically, I have a maine report that is set up with two subreports. One in a GH and the other in the details section. I'm wondering if there is a way to suppress or do a record selection on the results of the subreport in the details section.
If the subreport in the details section shows "---" then I want to return these records only in the main report. I did an if, then, else formula to show a different string based on the results.
if {practproauthlist.has_resmap} = 1 and {pro.has_resmap} = 0 then "Pract Map"
else
if {practproauthlist.has_resmap} = 1 and {pro.has_resmap} = 1 then "Pract Map"
else
if {practproauthlist.has_resmap} = 0 and {pro.has_resmap} = 1 then "----"
else
if {practproauthlist.has_resmap} = 0 and {pro.has_resmap} = 0 then " "
Thank you,
Gary
If the subreport in the details section shows "---" then I want to return these records only in the main report. I did an if, then, else formula to show a different string based on the results.
if {practproauthlist.has_resmap} = 1 and {pro.has_resmap} = 0 then "Pract Map"
else
if {practproauthlist.has_resmap} = 1 and {pro.has_resmap} = 1 then "Pract Map"
else
if {practproauthlist.has_resmap} = 0 and {pro.has_resmap} = 1 then "----"
else
if {practproauthlist.has_resmap} = 0 and {pro.has_resmap} = 0 then " "
Thank you,
Gary