Hello All!
I am using a selection criteria like..
table.status in ('A','B','C') OR
IF table.type = 1 then table.status = 'Z'
sure enough, the IF..THEN condition in the selection criteria slows down the report considerably. So I thought about a work around and changed the condition to
table.status in ('A','B','C','Z')
and whileprinting the report if the table.status = 'Z' and the table.type <> 1; I don't want to print that particular record.(No blank line either) Can someone please show me how to do this? Any help would be highly appreciated. thanks.
I am using a selection criteria like..
table.status in ('A','B','C') OR
IF table.type = 1 then table.status = 'Z'
sure enough, the IF..THEN condition in the selection criteria slows down the report considerably. So I thought about a work around and changed the condition to
table.status in ('A','B','C','Z')
and whileprinting the report if the table.status = 'Z' and the table.type <> 1; I don't want to print that particular record.(No blank line either) Can someone please show me how to do this? Any help would be highly appreciated. thanks.