How to change the specific columns as int and specific columns as number format how to do that for specific sheet

How to change the specific columns as int and specific columns as number format
how to do that for specific sheet

Hi @anjani_priya

Excel Process Scope
Use Excel file
Read Range
For each row in excel
  row("ColumnName") = Convert.ToInt32(row("ColumnName"))
  row("AnotherColumnName") = Convert.ToDouble(row("AnotherColumnName")) 
Write range

Hope it helps!!

@anjani_priya

you can use format cells activity to do directly on excel

cheers

the numbers should be separated by commas how to set that?

@anjani_priya

In the number format you have use 1000 separator option please check that

cheers

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.