Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Save $650 on Qlik Connect, Dec 1 - 7, our lowest price of the year. Register with code CYBERWEEK: Register
cancel
Showing results for 
Search instead for 
Did you mean: 
sgrice
Partner - Creator II
Partner - Creator II

Hide a row of data

Is it possible to hide a row of data.

I need a row of data for Above Below but do not want it to show.

So HIDE for ROW. just like HIDE for COLUMN/EXPRESSION


5 Replies
senpradip007
Specialist III
Specialist III

If you are deal with bar / line / combo chart, "invisible" option is there by the help of this you can hide the column.

Help2.png

sgrice
Partner - Creator II
Partner - Creator II
Author

Thanks but was after just hiding one line of data

jonathandienst
Partner - Champion III
Partner - Champion III

To hide a row, make sure that all expressions return 0 or null and make sure that the suppress nulls option is checked. To force an expression to return null if another is 0 (lets say expression 1 for example) use this construct:

     =If(Column(1) <> 0, <your expression here>)

Adapt the if condition to your requirements.

Logic will get you from a to b. Imagination will take you everywhere. - A Einstein
senpradip007
Specialist III
Specialist III

Can you come up with sample data and expected output ?

tresesco
MVP
MVP

If you are trying to create something like rolling report that uses above()/Below() and need to refer a row beyond your range, you could probably use aggr() in combination with set analysis as shown here: Calculating rolling n-period totals, averages or other aggregations and that would not require a hiding of a row. The important expression in the post:

sum(aggr(rangesum(above(total sum({<Month=>}Amount),0,3)),Month))

where you should concentrate I believe.