NetSuite saved search formula to multiply results of two other columns

杀马特。学长 韩版系。学妹 提交于 2019-12-02 12:06:58

问题


I currently have a saved search that populates a list of items. My current results are standard NetSuite fields which are "Name", "Description", "Type", "Average Cost" & "Available"

I am trying to add another column for a formula that multiplies the Average Cost by the Available to give me the Value of the Available SOH.


回答1:


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.



来源:https://stackoverflow.com/questions/51585866/netsuite-saved-search-formula-to-multiply-results-of-two-other-columns

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