Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello,
can i adapt the expression below to only take into account Locations where the "LocationName" starts with the letter "K"?
sum ({< WarehouseName = {'WHS BE'}, LocationFunction={'PICKING','BULK'}>} StockQty )
Thanx!
Chris
sum ({< WarehouseName = {'WHS BE'}, LocationFunction={'PICKING','BULK'},LocationName={'K*'}>} StockQty )
sum ({< WarehouseName = {'WHS BE'}, LocationFunction={'PICKING','BULK'},LocationName={'K*'}>} StockQty )
if(wildmatch(LocationName,'K*'),
sum ({< WarehouseName = {'WHS BE'}, LocationFunction={'PICKING','BULK'}>} StockQty ))
OR
sum ({< WarehouseName = {'WHS BE'}, LocationFunction={'PICKING','BULK'},LocationName={'K*'}>} StockQty )
thanx! this works fine!