I am trying to create a SSIS package that will import Excel data to SQL Server 2000 database.
One of the column in Excel sheet is in Percentage format and I wish to import that column in string format so it displays 45.22% instead of 0.4522.
Is there a way of doing this within SSIS?
Use derived column to add new column based on expression:
It multiplies COL1 by 100, converts it to WSTR (unicode string) and adds percent-sign at the end.