I have a case where I am reading data in through a table input step. The values that are read in would be:
agent, sub agent, merchant, total 1, 2, 2222, 10 2, 2, 2343, 4 1, 3, 1212, 1
What I am trying to accomplish is checking to see if there is an instance where agent does not have the same value as a sub agent. So if agent 1 does not have sub agent 1 then I need to create a row to have:
agent, sub agent, merchant, total 1, 1, null, 0
I am not really sure how I could possibly generate this single row as its own row. I have attempted several methods using filter row and creating constants but all attempts have either overwrote all existing entries that did not match and changed them to be sub agent 1 or created agent_1, sub agent_1, merchant_1, and total_1 fields.