I have created a dataflow using row_number and I want to extract only the values where row_number = 1, but I can't get it to work. Please tell me how to do this.
#azure #synapse #dataflow
I have created a dataflow using row_number and I want to extract only the values where row_number = 1, but I can't get it to work. Please tell me how to do this.
#azure #synapse #dataflow
I want to extract only the values where row_number = 1
To filter rows based on column value we have two ways:
My Sample data after windows transformation
Filter transformation
In Filter settings give Filter on
as column name with particular value.
Here I provided RowNumber == 1
so it will only filter rows where RowNumber =1.
Output of Filter transformation
Conditional split
In Conditional split settings give Split condition
as column name with particular value.
Here I provided RowNumber == 1
so it will only filter rows where RowNumber =1.
Output of Conditional split transformation