You can’t use switch for value ranges — it only works with fixed cases. If you need to set an image source based on ranges of ratio, you’ll need to use if/else statements (or a lookup function) instead. That way you can handle conditions like < 20, >= 20 && < 50, etc.