Is there an item that shows whether the product is shipped, like a shipped date? You could create an expression that tests to see if that column contains data and, if it does, print nothing, if it doesn't print a message like "Outstanding". For instance:
if (Shiped_Date == null ) {"Outstanding"} else {""}
Then, if you want to see just the outstanding orders, limit the new computed column to Outstanding.