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!