我有一个NetSuite搜索,该搜索按自定义字段值显示多个位置的库存值。下面列出了我当前正在使用的公式,效果很好。根据公式计算,当总数变为0时,我只需要修改此公式以显示空值即可。
MAX(当{custitem37} ='4'并且{inventorylocation.id} ='1'或{custitem37} ='04'并且{inventorylocation.id} ='1'时{locationquantityavailable}否则0结束的情况) + MAX(当{custitem37} ='4'且{inventorylocation.id} ='6'或{custitem37} ='04'且{inventorylocation.id} ='6'时,{locationquantityavailable}否则0结束)
答案 0 :(得分:0)
使用了NULLIF:MAX(当{custitem37} ='OS'并且{inventorylocation.id} ='1'时,则{locationquantityavailable}否则0结束)+ NULLIF(MAX(当{custitem37} ='OS'时并且{inventorylocation.id} ='6',然后{locationquantityavailable}否则0结束),0)