| **Navigation:**  [[clarion 7 faqs.htm|How To's and Troubleshooting]] > How to... >====== How to suppress printing a Detail Band until explicitly called to print ====== | [[how to store and display a graphic image with a memo or blob data type.htm|{{btn_prev_n.gif|Previous page}}]][[clarion 7 faqs.htm|{{btn_home_n.gif|Return to chapter overview}}]][[how to synchronize your app and dictionary.htm|{{btn_next_n.gif|Next page}}]] | | || Every Detail Band on a template generated Report procedure always prints unless you suppress printing it using a Detail Filter. To suppress a Detail Band from printing automatically: 1.On the Band Properties dialog, name a field equate label as the detail structure's USE attribute. 2.On the Procedure Properties for the Report, press the Report Properties button, then select the Detail Filters tab 3.Highlight the band to filter out and press the Properties button. 4.Provide the expression in the Filter: field. In this case use FALSE as the expression. FALSE will always be false, therefore printing the band will be suppressed. 5.Use embedded source code to explicitly print the detail band at the appropriate time: **      PRINT(RPT:MyDetailBand)**