I'm trying to create a report at lists all our stock products in BLue, but I'm having a hard time figuring out how to do this. I have managed to figure out how to list one of our products in blue by using
if {INLOC.Itemkey}="EB-103-S" then color(0, 0, 255) but I have about 300+ products to list so as of now the only way I know how to do more than one product is using a tedious listing suh as...
if {INLOC.Itemkey}="EB-103-S" then color(0, 0, 255) else if {INLOC.Itemkey}="EB-104-L" then color(0, 0, 255) else if {INLOC.Itemkey}="EB-109-L" then color(0, 0, 255)
Is this the easiest way to create this formula?? Isn't there a means of creating a formula such as
if {INLOC.Itemkey}="EB-103-S and "EB-104-L and "EB-109-L" then color(0, 0, 255), or somewhere along these parameters?
thanks
if {INLOC.Itemkey}="EB-103-S" then color(0, 0, 255) but I have about 300+ products to list so as of now the only way I know how to do more than one product is using a tedious listing suh as...
if {INLOC.Itemkey}="EB-103-S" then color(0, 0, 255) else if {INLOC.Itemkey}="EB-104-L" then color(0, 0, 255) else if {INLOC.Itemkey}="EB-109-L" then color(0, 0, 255)
Is this the easiest way to create this formula?? Isn't there a means of creating a formula such as
if {INLOC.Itemkey}="EB-103-S and "EB-104-L and "EB-109-L" then color(0, 0, 255), or somewhere along these parameters?
thanks