Discussions
Nested Case Statement Help
Hello,
I need some help with a Nested Case Statement I'm trying to build:
CASE WHEN ({name}='Q-01MG-SP2-AB' AND {quantityonhand}>50) THEN CASE WHEN ({name}='R-01MG-SP2-AB' AND {quantityonhand}<8) THEN 1 ELSE 0 END END
What I'm trying to find is when an item name matches and the quantity on hand of an item is greater than 50 show me a different item number and that quantity on hand when it is less than 8.
The statement above works however it is not calculating the last part of the case statement. Any ideas on where my error might lie?
Thank you,