Feb 7, 2006 #1 coggie01 Programmer Feb 7, 2006 3 US I am working in Report Studio and am trying to suppress rows when all measures are zero in the report. Does anyone know how to go about doing this? thanks!
I am working in Report Studio and am trying to suppress rows when all measures are zero in the report. Does anyone know how to go about doing this? thanks!
Feb 8, 2006 #2 MissReportNet Programmer Dec 11, 2005 29 NL Hi, You have to use an if then else statement. Like: IF([blabla] is 0) then (null)else ([bla2bla2]) Hope this will help you to get on the right track. Cheers, MissReportNet Upvote 0 Downvote
Hi, You have to use an if then else statement. Like: IF([blabla] is 0) then (null)else ([bla2bla2]) Hope this will help you to get on the right track. Cheers, MissReportNet
Feb 8, 2006 Thread starter #3 coggie01 Programmer Feb 7, 2006 3 US Thanks for your input though I will still have the problem of the record showing up but all with null values. I would like to see happen if the all measures displayed in the report are zero then suppress the record from being displayed at all. Thanks. Upvote 0 Downvote
Thanks for your input though I will still have the problem of the record showing up but all with null values. I would like to see happen if the all measures displayed in the report are zero then suppress the record from being displayed at all. Thanks.
Feb 10, 2006 #4 KingCrab MIS Apr 5, 2005 125 US Conditional format condition boolean: total(calc for report)=0 Upvote 0 Downvote