Discussion Board for collaboration related to QlikView App Development.
Hi All
I am trying to hide Fields in Barchart
Eg
Dimensions are: Department
Sales
Ops
Management
Unknown
How can i hide Unknown?
I am doing a stacked Bar Chart in %
If 'Unknown' in your department as a string, then use calculated dimesnion like this?
Replace Department with =if(Department<>'Unknown', Department)
If 'Unknown' in your department as a string, then use calculated dimesnion like this?
Replace Department with =if(Department<>'Unknown', Department)
You can also use Set analysis in your expression to hide UNKNOWN:
Lets say your expression is Sum(Sales), you can change it to Sum({<Department - ={'Unknown'}>}Sales)
Also dont forget to tick suppress with null vlaues
Hi Adil,
Front end:
if(Department<>'Unknown', Department)
Script side :
Load ----
-----
From
where Department<>'Unknown';
Thanks,
AS
Thanks All for help!
Managed to fix this
LOVE QLIKVIEW!!!
For a better performance, if you have a lot of data (and not too many expressions), to use set analysis over calculated dimension. (Calculated Dimension and conditional dimension --> bad performance)