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

Announcements
Independent validation for trusted, AI-ready data integration. See why IDC named Qlik a Leader: Read the Excerpt!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Chart Expression

Hiii,

I am uploading an excel sheet in which i want those only customer name in chart whose net collectable is greater than 2.

Please help me out.

7 Replies
sreenivas
Creator III
Creator III

In u r excel sheet all values are greater than 2 .... what values to be filtered

Not applicable
Author

srry ...Value is greater than 3..

sreenivas
Creator III
Creator III

PFA

jagan
Partner - Champion III
Partner - Champion III

Hi,

Try this set analysis expression.

=sum({<Customer={'=Sum([Net Collectable]) > 3'}>}[Net Collectable])

Regards,

Jagan.

Not applicable
Author

hi

     step 1- add pivote chart

     step 2- take dimension                        Customer

     step 3- add expression and write       if([Net Collectable]>3,[Net Collectable])

hope this will help you

Not applicable
Author

Hi,

You can do this in the script or in the Chart Expression

Script:

LOAD Customer,

     [Net Collectable] as netCollectable

FROM

(biff, embedded labels, table is Sheet1$)

WHERE([Net Collectable] > 3);

Chart Expression:

=sum({<netCollectable = {">3"}>} netCollectable)

By

neha_shirsath
Specialist
Specialist

Hi,

you can try this.

if(Sum([Net Collectable])>3,([Net Collectable]))