Hi @Lavanya Bhajanthri ,
Thank you for reaching out to us. I understand that you're facing challenges with preserving percentage format during data load from an Excel file to a SQL table using Azure Data Factory copy activity.
If the column type is set as Percentage in the source Excel, ADF will read the data as decimal. You can correct this either in the source Excel or after copying the data to the SQL table using a SQL script.
You can use the Script activity
, next to copy activity and give the query as:
update <table_name>
set
<column_name>=<column_name>*100
Hope this helps. Do let us know if you any further queries.
If this answers your query, do click Accept Answer
and Yes
for was this answer helpful. And, if you have any further query do let us know.