const { myTable } = tisa.form.fieldconst myRow = myTable.rows[0]const departmentCell = myRow.cell("department")if(departmentCell.value === "Finance") { const divisionCell = myTable.cell(0, "division") divisionCell.value = "ECM"} Copy
const { myTable } = tisa.form.fieldconst myRow = myTable.rows[0]const departmentCell = myRow.cell("department")if(departmentCell.value === "Finance") { const divisionCell = myTable.cell(0, "division") divisionCell.value = "ECM"}
Readonly
Gets cell's column identifier.
console.log(`Cell's column: ${myCell.columnInternalName}`) Copy
console.log(`Cell's column: ${myCell.columnInternalName}`)
Gets cell's row index.
console.log(`Cell's row index: ${myCell.rowIndex}`) Copy
console.log(`Cell's row index: ${myCell.rowIndex}`)
Gets or sets the cell's value.
console.log("Cell's current value:", myCell.value)myCell.value = "Finance" Copy
console.log("Cell's current value:", myCell.value)myCell.value = "Finance"
Example