Remove blank cells& duplicates on knime

I have a table like this one:

I want to remove blanks & duplicates &leave only letters on columns like this one

columnA ColumnB ColumnC
a d k
b e
a f l
x h l
r i
r
d

I want to get the following result:

columnA ColumnB ColumnC
a d k
b e l
x f
r h
d i
r

I’ve tried using loop column list loop start & loop end column append using inside of the loop remove duplicate row filters.The problem is that at the end the table is trying to adjust column dimensions& it adds Missing values(?) & I cannot get the expected result.

Hope anyone can help me.

Thanks.

1 Like

I used this workflow
image

and got the result:
image

4 Likes

Nicely done @elsamuel , although I would probably use a Row Filter instead of the Missing Value (You can filter out empty rows with the Row Filter node).

I believe the Row Filter will be much faster than the Missing Value node - in general, the Missing Value node is quite slow, probably because of the PMML, which is not needed for this operation.

3 Likes

thanks @elsamuel, is there any way you can share your workflow file?

I really appreciate your support.

Hello Bruno29a.

Could you share the solution using Row filter node / how should be set Row filter node parameters?

Thanks,

Here you go:

I followed @bruno29a’s advice and swapped a Row Filter node for the Missing Value node.

4 Likes

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.