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

Announcements
Join us in Toronto Sept 9th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

condition if

hello 

i want to make a condition in my chart but my values dosen't change can you help with the syntaxe please  ::


IF(VLR_ORDINATO>=1000,000,Count(ID_NUMERO_ORD))

Capture.PNG

1 Solution

Accepted Solutions
sunny_talwar

May be this:

Count(If(VLR_ORDINATO>=1000000, ID_NUMERO_ORD))


or

Count({<VLR_ORDINATO = {'>=1000000'}>} ID_NUMERO_ORD)

View solution in original post

3 Replies
sunny_talwar

May be this:

Count(If(VLR_ORDINATO>=1000000, ID_NUMERO_ORD))


or

Count({<VLR_ORDINATO = {'>=1000000'}>} ID_NUMERO_ORD)

Not applicable
Author

thanks Sunny!!!!  now it work

sunny_talwar

Awesome