I have a Zap where I import a CSV and then later down the line I want to filter out some rows depending on the values within that row.
Example CSV:
id,name,color
1,john,red
2,mary,blue
3,sam,red
In this CSV, I only want to proceed with people who are tagged as red. I tried to accomplish this using the "Run JavaScript" app, but even though I return an array of data, it seems to only return 1 row. Does anyone know how to do this? Thanks.