Set the numeric value of a cell in the DataSheet
SetCell(Row, Col, Val)
True if succeed, otherwise False
EX1
#Create Book1 with one sheet with 3column and 5row, set some numbers in sheet import PyOrigin wks=PyOrigin.FindWorksheet('Book1') #Set the number in col(3)[2]=0.5 wks.SetCell(1,2,0.5)
Datasheet::Cell