I have this logic in vensim that goes,
If result<150, 1,2
if result>=150 :AND: <200, 3, 4
If result > 200, 5, 6
What I want is to make them nested if in vensim, but I do not know how.
I already tried
If then else (result<150, 1, If then else (result>=150:AND:<200,3, 2))
but it doesnt work. please help