I'm using a CASE WHEN statement to filter out dimensions based on dynamic criteria. For example, take the following case when statement:
CASE WHEN
"Activities"."ACTIVITY_EN" in ('Closed','Open')
THEN
'Closed'
END
I would expect that there will only be rows for 'Closed' and 'Open', however, I am also seeing a row with the dimension of '-' . There is no way to filter this out and leads to misleading dimensions.