I have the following code in vb script(Excel) which massage the data. It puts a ';' between 2 cells and merge them together.
Workbooks("EC_OUT.xls").Sheets("Sheet1").Range("H" & m) = Workbooks("EC.xls").Sheets("Sheet1").Range("D" & m) & ";" & Workbooks("EC.xls").Sheets("Sheet1").Range("E" & m)
How to skip the line after';' the result should like the following
Workbooks("EC.xls").Sheets("Sheet1").Range("D" & m) & ";"
Workbooks("EC.xls").Sheets("Sheet1").Range("E" & m)