Question
Do you know the way to quickly change all data from DT to UpperCase?
I read an Excel Sheet1 and store in DT (I have data in different format sometimes lowercase, sometimes uppercase, sometimes mix)
I want to convert all data to Upper case and then write to Sheet2
Hi,
you can use for each row activity. And inside the activity use assign as below
row(“your column name”)=row(“your column name”).tostring.toUpper