I have a sorter, but I do not want it to sort if the first row in Field B has a value. I am guessing this will need a combination of transformers.
Page 1 / 1
There are a few ways to do that. A solely FME way to do it is below. The tester output will be passed if it's not null and failed if it's null.
You could also use a python script or various other ways with different transformers.
There are a few ways to do that. A solely FME way to do it is below. The tester output will be passed if it's not null and failed if it's null.
You could also use a python script or various other ways with different transformers.
Thanks for sharing that. I was able to get it to work using a different method. I used a combination of testers, counters (local), and the statistics calculator. See attached image.
Here is another way.
Here is another way.
This also works. Thank you.