8.1.7.1 Datasheet::Cell
It is recommended that you switch to the originpro package. PyOrigin is primarily for users who need to work with Origin version prior to 2021. |
Description
Get the value at the location (nRow, Col) in the Datasheet
Syntax
Cell(Row, Col)
Parameters
- Row
- The row number of the cell
- Col
- The column number of the cell
Return
The value in cell
Examples
EX1
import PyOrigin wks=PyOrigin.FindWorksheet('Book1') #Get the value in cell print('the number in col(3)[2] is %f' % wks.Cell(1,2))