Can someone teach me this basic if or switch task?
variable flocking is either Yes or No variable otk is either ābelow ankleā, āover ankleā, āover the kneeā variable upperMaterial is either āPUā, āTextileā, āJellyā, āOthersā I want to set up: Output #1: if flocking = Yes, AND otk = ābelow ankleā OR āover ankleā , AND upperMaterial is āTextileā, then print 6405.90.5040 if flocking = Yes, otk = āover the kneeā, AND upperMaterial is āTextileā, then print 6402.90.3165 Output #2: if flocking = No, otk = āover ankleā OR āover the kneeā, AND upperMaterial is āPUā, then print 6202.90.2020 ..... and similar rules with either this or that then print different outputs. There are more conditions in each scenarios.. Can someone guide me which is the way to achieve this? I seem to have difficulties trying to make different variable types satisfy the same time if they are true then to execute certain rules.. As I believe you can only do that if variants are the same type? Thanks a bunch!