I have two excel files in my Azure Database Container and I would like to transform that data and populate a single database or file in Azure Data Factory.
For Example:
I would like to copy the data from the below excel file:
Product | Units Sold | Sale Price |
---|---|---|
Carretera | 1618.5 | $ 20.00 |
Carretera | 1321 | $ 20.00 |
Montana | 921 | $ 15.00 |
Montana | 2518 | $ 12.00 |
Paseo | 292 | $ 20.00 |
Paseo | 974 | $ 15.00 |
Into the main file with the headers:
Segment | Country | Product | Discount Band | Units Sold | Manufacturing Price | Sale Price | Gross Sales | Discounts | Sales | COGS | Profit | Date | Month Number | Month Name | Year |
---|
Being new to Azure data factory I could not find much relevant data to my query on the internet, therefore it would be great if I got some suggestions or assistance regarding my query.
Update
When performing Mapping in Copy Activity I am not able to see or select the Output columns, the Excel source gets replicated to CSV sink by overwriting the existing data.
Thanks in advance.