Is it possible to use Data Transformations to exclude data lines that contain no data in a particular field?

patrick
2
Use the where formatter in a setValue action step {{data.where('part', '!=', '')}}. That should return only the rows where the part has a value.
1 Like