How to change the specific columns as int and specific columns as number format
how to do that for specific sheet
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!!
the numbers should be separated by commas how to set that?
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.