Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我目前有一个保存的搜索来填充项目列表。我目前的结果是标准的 NetSuite 字段,它们是“名称”、“描述”、“类型”、“平均成本”和“可用”
我正在尝试为一个公式添加另一列,该公式将平均成本乘以可用来给我可用 SOH 的值。
在您保存的搜索结果中添加一个新的类型字段formula(numeric)。在公式弹出窗口中使用这个公式:
formula(numeric)
NVL({averagecost}, 0) * NVL({quantityavailable}, 0)
这会将平均成本和可用数量相乘,然后得出结果。我把 NVL 放在那里,以防一个项目没有可用的平均成本或数量,您不会收到错误。