I have an Azure Synapse Analytics Data Flow and am using a Window activity to add a column to show the number of rows with duplicated values for a certain column.
I have no problem with any of my other dataflow expression builder expressions, but in the "Over" section of the window activity's settings, when selecting the columns to "partition-by" (how Microsoft says this setting works https://learn.microsoft.com/en-us/azure/data-factory/data-flow-window) I can't dynamically select the column name using the expression:
byName('col1')
I get an error saying this column can't be found. But I've used that exact expression on multiple different dataflow activities and have never had an issue with this expression's ability to select a column dynamically.
Is there something I'm missing. I would just like to, for the window activity in a synapse dataflow, dynamically select the column(s) to partition by.