Note: This was originally posted by an inactive account. Content was preserved by moving under an admin account.
Originally posted by: Denis DrouaisHello,
With the Filter node, I am trying to delete all lines which field "Reference" does not contain "abc". For instance :
Reference, Volume
Reference abcd, 13
Reference ab, 4567
Reference abc, 2218
Reference a, 955
Reference abcdef, 9888
Reference abe, 6550
Should give :
Reference, Volume
Reference abcd, 13
Reference abc, 2218
Reference abcdef, 9888
I'm trying the the folowing code
emit *
where Reference == "*abc*"
but it gives me 0 output
Can anybody help me with it ?
Thank you very much in advance,
Denis