If Statement doesn't output all items from list

Did I do the if statement correctly? Looks like the list is being cut off from the out put.


This is working as intended: if the result of isNull is true (which it is), then you’ll get list A, if not true then you’ll get list B.

If you want to iterate over the list you need to call the function on the list not provide a single input:

1 Like