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

Qlik Sense Table - conditional content

Hi,

I am trying to add a Table Chart to my app where only certain rows are shown.

(Content of column X shall be displayed where values in column Y exceed a certain threshold.)

Therefore I tried to add a condition in the "Add column" menu in the data section.

I already tried:

IF(Y>0.05,X)

{<Y={>0.05}>}X

but both failed. Am I missing something or is this not possible in Qlik.

Thanks and kind regards,

Marco

1 Solution

Accepted Solutions
ahaahaaha
Partner - Master
Partner - Master

Hi Marco,

If this is in script, then

LOAD

X,

Y

FROM [Path to file]

Where Y> 0.5;


If this is in front (in chart), then


Dimension: X


Expression: Sum({<X={"=Y>0.5"}>}Y)


See attached file


Regards,

Andrey

View solution in original post

2 Replies
ahaahaaha
Partner - Master
Partner - Master

Hi Marco,

If this is in script, then

LOAD

X,

Y

FROM [Path to file]

Where Y> 0.5;


If this is in front (in chart), then


Dimension: X


Expression: Sum({<X={"=Y>0.5"}>}Y)


See attached file


Regards,

Andrey

Anonymous
Not applicable
Author

Hi Andrey,

this works just fine!

большое спасибо