Multiple images in column algorithm
Hello community,
i want to display three different arrows by using a column algorithm.
The green arrow should be visible if C is greater than 15.
The yellow arrow should be visible if C is between 0 and 15.
The red arrow should be visible if C is less than 0.
I created the function for two images but i cannot integrate the third image.
Kind regards
Jonas
0
Answers
-
Hi Jonas Trompeter,
your algorithm could perhaps look like this:
if(c>15,"green.jpg",if(and(c>=0,c<=15),"yellow.jpg","red.jpg"))
Hope this gives you an idea of how to implement your arrows
Best regards,
Bettina
1