0

我有一个 NetSuite 搜索,它通过自定义字段值显示来自多个位置的库存值。下面列出了我目前使用的公式,并且工作得很好。我只需要修改这个公式以显示空值,当根据公式计算总计为 0 时。

MAX(当 {custitem37} = '4' and {inventorylocation.id} = '1' OR {custitem37} = '04' and {inventorylocation.id} = '1' 然后 {locationquantityavailable} else 0 end)+ MAX(如果 {custitem37} = '4' 和 {inventorylocation.id} = '6' 或 {custitem37} = '04' 和 {inventorylocation.id} = '6' 然后 {locationquantityavailable} 否则 0 结束)

4

1 回答 1

0

使用 NULLIF:MAX(当 {custitem37} = 'OS' 和 {inventorylocation.id} = '1' 然后 {locationquantityavailable} else 0 end)+ NULLIF(MAX(当 {custitem37} = 'OS' 和 {inventorylocation 时的情况) .id} = '6' 然后 {locationquantityavailable} else 0 end) ,0)

于 2019-12-09T20:18:13.027 回答