Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
praveenr035
Contributor III
Contributor III

straight table column hide on report open

Hi, I am new to Qlikview and stuck with a requirement. I have a straight table (chart) with a few bunch of dimensions and no expressions.

I've applied conditional hide =not(isnull(column_name)) (properties->presentation->conditional) to all the columns. This is working great only if I select values in other straight table (I mean only if there is a filter). If nothing is selected (or cleared all filters), my straight table is hiding columns even though it is not null. Can you please let me know how to make the column hide work all the time? Thanks in advance

8 Replies
SreeniJD
Specialist
Specialist

Hi Praveen

By default your conditional statement is executing when you don't have additional filter or all selections cleared..

use GetSelected function for conditional hiding... so as and when you select the value, it will hide...

HTH

Sreeni

nagarjuna_kotha
Partner - Specialist II
Partner - Specialist II

CAn u share sample file ?

jafari_ervin
Creator III
Creator III

Do you have any expression in your straight table?

settu_periasamy
Master III
Master III

Hi,

you can try this

=GetPossibleCount(Column_Name)>=1

Not applicable

Try using   

If( NOT ISNULL (Only(column_name)) , 0, 1)

in condition

either at Dimension or Expression

Refer attached QVW for reference

Not applicable

Capture.JPG

gautik92
Specialist III
Specialist III

did yu try customizable straight table

have a look at this

Customizable Straight Table

jagan
Luminary Alumni
Luminary Alumni

Hi,

Try like this

=GetSelectedCount(column_name) > 0

If you select any values it will display otherwise it will hide the column.

Regards,

Jagan.