NetSuite saved search formula to multiply results of two other columns

前端 未结 1 1507
独厮守ぢ
独厮守ぢ 2021-01-24 10:41

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\" &

相关标签:
1条回答
  • 2021-01-24 11:10

    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.

    0 讨论(0)
提交回复
热议问题