can we transpose rows to column without aggregate using dataflows

BalwinderKaur-5937 41 Reputation points
2022-02-04T00:10:37.947+00:00

I need to transpose rows into columns without aggregating any values, is it possible to do that using dataflows, tried pivot option but it requires the aggregate function.
Sample data:
Field 1 Value1
Field 2 Value2
Field 3 Value 3
Result Needed:
Field1 Field2 Field3
Value1 Value2 Value3

Azure Synapse Analytics
Azure Synapse Analytics
An Azure analytics service that brings together data integration, enterprise data warehousing, and big data analytics. Previously known as Azure SQL Data Warehouse.
5,378 questions
Azure Data Factory
Azure Data Factory
An Azure service for ingesting, preparing, and transforming data at scale.
11,639 questions
{count} votes

1 answer

Sort by: Most helpful
  1. MarkKromer-MSFT 5,226 Reputation points Microsoft Employee Moderator
    2022-02-04T07:21:01.867+00:00

    There is not a native Transpose function in ADF. However, there are some clever ways to use Unpivot w/Pivot that have been devised to provide similar functionality. Here is an example: https://learn.microsoft.com/en-us/answers/questions/629521/transpose-data-using-adf.html

    0 comments No comments

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.