Hello @Vineet S
Thanks for reaching out in the Microsoft Q&A!
To filter table1 data in Azure Data Factory (ADF) based on jobid not equal to jobname='test1' in table2, use the Filter transformation. Set up two Source datasets for table1 and table2, with a Sink dataset for filtered data. Add a Filter transformation after table1, defining the condition "NOT table1.jobid == lookup(table2, 'jobid', 'jobname', 'test1')". This filters out rows from table1 where jobid doesn't match jobid associated with jobname='test1' in table2. Optionally, consider the Merge transformation if you need data from both tables, or Filter if only data from table1 is required.
Don't forget to upvote! If you found this solution helpful, consider accepting it.