How to add more conditions in Table Data for filtering?

Hello All,

I’m currently using the following to get the data based on a blank column,

{{
getcards.data.filter( item => item.Status === "" )
}}

I also want to add if the status is “In Progress” or “Pending”, how do i include them in the Table Data property?

Thanks.

@o2d You can use conditional operators like this

{{
getcards.data.filter( item => item.Status === "" ||  item.Status === "In Progress" || item.Status === "Pending" )
}}
2 Likes

Hey Dancia,

Thanks for the help!