Can I do the following in 1 saved search? I need t...
# general
j
Can I do the following in 1 saved search? I need to show items based on following criteria: Inventory Avail is greater than or =1 at Location 1 AND Inventory Avail is =0 at Location 2. The only results I need are the item numbers. I'm horrible with expressions .
n
I did a similar search using the DECODE({inventorylocation},#,{locationquantityavailable},0) replacing the # with the inventory location will return the Available for each location. You could break this into 2 crtieria on the search
Formula (numeric) DECODE({inventorylocation},1,{locationquantityavailable},0) >= 1 Formula (numeric) DECODE({inventorylocation},2,{locationquantityavailable},0) = 0
j
Thank you.  Will try this!
I keep getting errors unfortunately... I believe I will need custom formulas due to custom fields.