I Need Logic for this...I need to print names having above 1000 from column names "First" then I need to print names having above 1000 from column names "Second"

I need to print names having above 1000 from column names “First” then I need to print names having above 1000 from column names “Second” Meanwhile print the name from “Second” Column that name should not have above 1000 in first Column…I need final output without duplicate.
Screenshot 2022-07-14 164149
Screenshot 2022-07-14 164202

Hey,
You can use fiter Data Table in For Each row
In Filter Data table
you write
row(“Second”)>1000
AND row(“First”)>1000
Thanks