Problem Appending / Filtered Data in Excel

I am trying to filter data in one Excel Sheet (OPADB) by a Number (NEID) per row in another (Roster) and then compile the results in a third sheet (CurrentOPA). I configured it exactly the same way as I did in a previous automation where I copied the filtered results to separate sheets for each name. The only difference is that I used Copy/Paste in that one instead of Append and copied it to separate spreadsheets instead of one.

The problem I’m having is that it seems to be filtering correctly, but it’s copying the unfiltered results, i.e. the entire table to the new spreadsheet each time except for the first row.

Here is my sequence.

Any feedback would be appreciated. Thanks!

@justindward

This append range will always read full data without considering filters

You need to use read range with filters option and then append range with datatable as input

Cheers