Hi
I am using the below formula for one of my line item in my module 'Demand'. I am doing a look up in another module 'Open Qty by Bucket ID' by Bucket ID and SKU to populate the open qty value in the 'Demand' module.
Open Qty by Bucket ID.Open Qty[LOOKUP: Bucket ID LF, LOOKUP: SKU LF]
The issue I see here is,if there is no matching value returned from the look up, I am seeing open qty being populated as 0. When there is no matching,I need to show the Reqd qty ( another line item in the same 'Demand' module).
I tried with the below formula:
IF Open Qty by Bucket ID.Open Qty[LOOKUP: Bucket ID LF, LOOKUP: SKU LF] is BLANK THEN Quantity Reqd ELSE Open Qty by Bucket ID.Open Qty[LOOKUP: Bucket ID LF, LOOKUP: SKU LF]
But I am getting invalid formula error.
Any help would be appreciated.