Feb 7, 2006 #1 coggie01 Programmer Joined Feb 7, 2006 Messages 3 Location 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 Joined Dec 11, 2005 Messages 29 Location 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 Joined Feb 7, 2006 Messages 3 Location 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 Joined Apr 5, 2005 Messages 125 Location US Conditional format condition boolean: total(calc for report)=0 Upvote 0 Downvote