I was reading this and on the EXAMPLE section,
there is a IF condition as below;
IF ITEM(Products) = Products.Widget
THEN <... calculation for Widget ...>
ELSE <... calculation for other products ...>
This made me wonder, does Anaplan automatically compares each items within the list?
In Python term, I am thinking Anaplan is acting as below:
item = ["parent", "code", "widget"]
if "widget" in item: print "it matches!"
Is this correct?
Thanks,