Azure DF: Data Flow: how to filter out certain rows

Mar 29, 2022 11:53

A problem: we have a Data Flow; and we want to leave only rows where:

Column continent is equal to 'Europe'

And column country_code is not NULL

To do this, add a filtering operation into the Data Flow:





The logical expression “continent == 'Europe' && not((isNull(country_code)))” implements the filtering you want.

azure data factory

Previous post Next post
Up