Discussion Board for collaboration related to QlikView App Development.
Hello,
I want to built a straight table but for the moment I have rows in my straight table which I do not want to be visible. I would like to keep only the rows where the value of the department field is equal to the value of field "Level 1" OR "Level 2" OR "Level 3" OR "Level 4".
Please take a look at the attached QVW example for better understanding of the question.
Thx for your help
_Koen
Message was edited by: Koen Bal
Hi Gysbert,
Yes the suggested solution solves my problem, again thanks for your input.
I added a solution qvw with a more detailed explanation for future readers of the post.
_Koen
Change Department to a calculated dimension: =if(match(Department,[Level 1],[Level 2],[Level 3],[Level 4]),Department)
And check the option Suppress When Value Is Null for the new calculated dimension. Does that do what you want?
hi check the attach file
Hi Gysbert,
Yes the suggested solution solves my problem, again thanks for your input.
I added a solution qvw with a more detailed explanation for future readers of the post.
_Koen
For this case in order not to create extra dimension and hide it. Another similar solution, since this table has only one expression is to modify the expression to
=if(match(Department,[Level 1] ,[Level 2] ,[Level 3] ,[Level 4]), sum([# of hours]))
So you calculate it and show only the rows when this condition is met