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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
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

Labels (1)
1 Solution

Accepted Solutions
sunny_talwar
MVP
MVP

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
MVP
MVP

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
MVP
MVP

Awesome