If I have an input table where I select a quantity of certain inputs or I toggle inputs and I want the output form to contain a list of only the items that are greater than zero or toggled yes:
So if this is my list:
dogs - 0
birds - 125
chickens - yes
pigs - no
cats - 0
spiders -16
snakes - 0
my output would only be 3 lines
birds
chickens
spiders
------------------------
but if my input changed to
dogs - 1
birds - 125
chickens - yes
pigs - yes
cats - 0
spiders - 0
snakes - 18
then my output would be
dogs
birds
chickens
pigs
snakes
I don't want blank lines in the output b/c I'd have 300 lines of input of which only 20 lines of output is wanted in a clean fashion.
Thank you in advance for your help!!
So if this is my list:
dogs - 0
birds - 125
chickens - yes
pigs - no
cats - 0
spiders -16
snakes - 0
my output would only be 3 lines
birds
chickens
spiders
------------------------
but if my input changed to
dogs - 1
birds - 125
chickens - yes
pigs - yes
cats - 0
spiders - 0
snakes - 18
then my output would be
dogs
birds
chickens
pigs
snakes
I don't want blank lines in the output b/c I'd have 300 lines of input of which only 20 lines of output is wanted in a clean fashion.
Thank you in advance for your help!!