views:

1804

answers:

1

I need to suppress a subreport. I have a parameter field named "TransactionType"; only if TransactionType is "Multiple" do I need to show the subreport option; otherwise, it should show blank. I have checked suppress option in subreport. I need a formula for suppressing a subreport if transactiontype is Multiple then show subreport or else do not. How to do this?

+1  A: 

Put the subreport into a footer section all by itself. In the section properties (get there via the Section Expert) set the suppress option's formula to
(TransactionType <> "Multiple") Then True;

Anthony K