Hi.
I have a gallery used in an order form app where it displays the quantity in stock of each item.
People are allowed to order items that are out of stock so I would like the item to display 0 of no items are in stock but what happens when people order is the available qty then displays a negative number which has confused people.
Is there a way in my code I can say if the number is less than 0 display 0?
This is the code I currently have
"Available in Stock: " & LookUp('PPE Stock',Title=ThisItem.Title,Qty)
As shown it currently displays the live stock figure but the second item shows -4 which is where the confusion comes in for people.

Thank you.