Hello, I’m working on getting specific data from PDF, and I have a problem with the filter. It looks like this, … PDF.co convert PDF to JSON - HTTP Make a request - Parse JSON - Iterator - Filter … . And when I set the appropriate data in the filter that I want it to check and pass further, even though it’s there, it doesn’t pass it, I’ve tried various things, but at this point I don’t know what to do.
2 Likes
Hi @Nicolas_Bednarz ,
The main issue here is that you’re not specifying an index in your filters
Adding a [0] will reference the first row, adding a second [0] will reference the first column.
You may be able to get by adding in the 0’s because it appears there’s only one row and one column but if you expect multiple to be returned back you’ll need to incorporate incrementing functionality.
2 Likes
Thank you for your help
1 Like
Absolutely @Nicolas_Bednarz , anytime!
1 Like