Hello,
ich have a huge table and i want to filter it.
I have one Column called Filter_Status. This column contains weither the value: FilterEnd, FilterBegin or some random negativ number.
Now i want to filter out all rows between FilterBegin and FilterEnd. But not the rows between FilterEnd and FilterBegin. Its also possible that multiple FilterBegins are in between to. The start Value who has FilterBegin should be excluded through the filter. The last row with the status FilterEnd shoul still be part of the table.
I think what you want to achieve should be doable with KNIME although it will require some additional “data wrangling” I think.
In order to best help you, can you provide a simplified example that shows a simplified, (anonymsed) example of your data and then an example of the desired output? You can do that in Excel or even create a workflow for that already.
Based on that I’m sure either myself or someone else here will find the time to guide you or even provide a prototype.
If I understood correctly, the simple rule is to include rows that:
have FilterEnd in them
that have “FilterEnd” in a previous row
So I created a new column that only has FilterEnd/FilterBegin in it - or a missing value. Using Missing Value Node we can set any missing value to the last “none-missing” value in a previous row.
After that we filter that new column for “FilterEnd”.
1 Problem. Because i’m working for a company i cant install the newest version of KNIME in which you created your example so i cant load and look at your example solution.