Discussions
Stay up-to-date with the latest news from NetSuite. You’ll be in the know about how to connect with peers and take your business to new heights at our virtual, in-person, on demand events, and much more.
New AI Community Guidelines. Please review and follow them to ensure AI use stays safe, accurate, and compliant.
need help with saved search formula to display kits availability
Hi,
I need help with a formula I would use in items saved searches...
thing I'm trying to is displaying "Yes" if item is available and "No" if item is not available. This is easy for inventory items where I just have to add "Is available" field in results tab...but it is no data displayed for kits, so I need to create the following formula (in Pseudocode):
If (Item_type = 'inevntoryitem')//saved search contains only inventory items and kits
{display 'isavailable' field}
else
{
if(minimum[members.available] > 0)
{
display 'Yes'
}
else
{
display 'No'
}
}
But how can I apply this formula in results tab in saved search?
0