Delete/remove empty data row within an array

Hello,

I need assistance with removing/deleting/ignoring all empty data within an array:
OUTPUT

  • Bundle 1Collection
    • Array combinationArray
      • 1 Logo Design
      • 2 Print Design
      • 3 empty
      • 4 empty
      • 5 empty
      • 6 empty
      • 7 empty
      • 8 empty

I have tried “map”. “slice” and “filter” but nothing is working to remove/delete/ignore the empty rows.

Try using remove function of Make.

https://www.make.com/en/help/functions/array-functions#remove--array--value1--value2------

Basically what you want to do is,

remove(yourarray;null;emptystring)

For null and emptystring, use the mapping option available under general and string tab of make.

1 Like

Hello @Runcorn thank you so much for the assistance. This has worked. I appreciate the knowledge.

1 Like