Nested if statement

I was testing out if statement and this was my solution. I was creating a dart width for a leotard if cup is A then .3, B/C then .6,D/E then .9 else 1.2. But what if they don’t know the cup size? My solution was 1st I created a measurement of “Cup” which is @Bust-@UpperChestCirc Then I created a measurement of “Cupdart” which came out like this (@Cup>=7?1.2:(@Cup>=5?0.9:(@Cup>=3?0.6:0.3))) I know that calculation is done in order so I had to reverse the order

3 Likes