#Export the data to Excel
import clr
import System
from System import Array
from System.Collections.Generic import List as IList
clr.AddReference("DSOffice")
import DSOffice
from DSOffice import *
filepath=IN[0]
sheetName="lolol"
dataIn=[[2,1,3],[2,1,4],[4,4,3]]
overWrite=True
starts=0
list = []
for l in dataIn:
list.append(Array[object](l))
listDataIN = Array[Array[object]](Array[object](list))
OUT = DSOffice.Data.ExportExcel(filepath,sheetName,starts,starts,listDataIN,overWrite)