NetSuite saved search formula to multiply results of two other columns

南笙酒味 提交于 2019-12-02 03:04:15

In your saved search results add a new field of type formula(numeric). In the formula popup window use this formula:

NVL({averagecost}, 0) * NVL({quantityavailable}, 0)

This will multiply the average cost and quantity available together and give you the result. I put the NVL in there in case an item doesn't have an average cost or quantity available you won't get an error.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!