I need to create a list of items selected from a table of data. An item is selected if its quantity > 0. The selected items are used to populate another element however I need it to not include spaces. The attached sample works with a simple IF statement but I need to get rid of the spaces for those unselected items. Since I’m importing this into another tool, I can’t use a solution that requires VBA.
ModelA Qty 2 ModelB Qty 0 ModelC Qty 1
So the output in another table (elsewhere on the worksheet) should be:
ModelA ModelC
I also can’t just sort it (to get rid of the empty lines), since that’s a manual step, it needs to be done through lookups and/or matching if possible.
Thnx, Deborah