Skip to main content
Announcements
Qlik Connect 2025: 3 days of full immersion in data, analytics, and AI. May 13-15 | Orlando, FL: Learn More
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