Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
In QlikView there was an appropriate option within the object-properties to hide certain columns. Maybe this kind of feature is further exists in Sense.
Beside of this - the logic might be implemented within each measure or within any of the dimensions by using a calculated dimension.
I tried moving the row-filtering logic into a calculated dimension as suggested. However, since the logic contains aggregation functions (such as Count() and set-based expressions), it results in an “Invalid dimension” error in Qlik Sense.
Calculated dimensions in Qlik are required to operate at row level and do not support complex aggregation-based conditions like measures do.
If aggregations are applied within a calculated dimension it needs to be to wrap the logic within an aggr() to define a dimensional context. Such approach may look like:
aggr(if(count({ Set } MyField) > n, MyDim1), MyDim1, MyDim2)