How can i get rid of empty values?


Hello,

My empty values still remain, where is the trick?

KR

Andreas

Hi @Draxl_Andreas,

I dont think those values are completely empty. maybe they are “” strings.
If that is the case, try the == node in combination with “”; codeblock/ empty string and then a filter by boolmask

3 Likes

This one line of design script should do the trick: DSCore.List.Clean(a != "" ? a : null, false);

2 Likes