Hello,
I would like to remove rows, where at least one of the fields contains 0.
How would it be possible to achieve this?
Thanks a lot!
Hi @insomned
Here is how you can do it.
Workflow:
1. Using record id tool to set row id.
2. Using transpose tool to convert columns to rows.
3. Filter row if its 0. This way it will give record id which has zero value.
4. Using join tool to join on record id. Unjoined record id gives the rows with no zero values.
Hope this helps : )
I assume we talk of an infeasibly large number of rows to make a filter that goes "[1]=0 or [2] =0 or ....."
in that case it is a bit finickey, i have made an example workflow that you realy should check out, but the idea is that you make a logic for each field to check if it 0, and assigns it a different value than the rest if it is. then you can transpose, and sum the now-columns, filter those and then join back on the original data...
let me know if it doesnt do the right thing, or you have any questions