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

Announcements
Join us in Bucharest on Sept 18th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
Ezther1997
Contributor
Contributor

Error in Expression

I have the following expression but keep getting the same error. As far as I can see there are enough brackets in place so I am really lost as to how to resolve this error.

if([Actual Delay Window]=<15, RGB(124, 248, 62), if([Actual Delay Window] > 15,RGB (255, 255, 0), RGB (192, 192, 192)))

2 Replies
Or
MVP
MVP

if([Actual Delay Window]<=15, RGB(124, 248, 62), if([Actual Delay Window] > 15,RGB (255, 255, 0), RGB (192, 192, 192)))

Ezther1997
Contributor
Contributor
Author

Thank you this works!