Hello,
Currently working on a formula for our stock items for our eCommerce site. We are wanting to update the title based on the picklist field called Visibility on the eCommerce tab. When it’s set to Invisible, the title should be updated to DELETE, else set the title as the Web Title attribute.
IIf( [StockItem -> Custom.ItemSettings.Visibility] = 'I', 'DELETE', [StockItem -> Attributes.Web Title] )
The issue we are running into is that regardless of how we set it, the formula is evaluating to TRUE and updating title to DELETE. Not sure if I’m missing something.
Thanks!