REPORT CONSUMPTION Tag: Low Inventory Condition?

Hello Everyone,ive revived this old topic because im wondering how i would add a second filter for the upper limit…

[Low Stock:1, 1]
{REPORT CONSUMPTION DETAILS:C.Name,C.Inventory:C.GetPhysicalInventory() < 5 && >15}

This should work

{REPORT CONSUMPTION DETAILS:C.Name,C.Inventory:C.GetPhysicalInventory() > 5 AND C.GetPhysicalInventory() < 15}

This will not work because stock count cant be LESS than 5 and GREATER than 15 in the same time.

{REPORT CONSUMPTION DETAILS:C.Name,C.Inventory:C.GetPhysicalInventory() < 5 && >15}