I have a list of data in 'Table1' on an Excel spreadsheet that looks like this:
Column A Column B
Pizza Sauce 3
Pepperoni 0
Cheese 1
Crust 2
Garlic 0
Sausage 0
From this list I want to be able to create a second list that, based on the value in B, shows the value in A. I want anything that is greater than 0 to show in this list (For an order sheet to give to a vendor). Like such:
Column A Column B
Pizza Sauce 3
Cheese 1
Crust 2
How might I go about doing this? I've looked around but haven't been able to do so successfully.