Exclude Null From Rollup

I am using the rollup formula to create an array. It is returning null for one of the array values. How can I return the rolled up array without the nulls?

Screenshot 2023-06-15 at 6.51.07 AM

You could use the filter formula to check that the value isn’t null, which will give you a cleaned array

1 Like

Add .filter(x => x != null)

1 Like