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!