TreeINFO-For-M365 documentation
    Preparing search index...
    const { myTable } = tisa.form.field
    const myRow = myTable.rows[0]
    const departmentCell = myRow.cell("department")

    if(departmentCell.value === "Finance") {
    const divisionCell = myTable.cell(0, "division")
    divisionCell.value = "ECM"
    }
    interface IFieldAdvancedTableCell {
        columnInternalName: string;
        rowIndex: number;
        value: any;
    }
    Index

    Properties

    columnInternalName: string

    Gets cell's column identifier.

    console.log(`Cell's column: ${myCell.columnInternalName}`)
    
    rowIndex: number

    Gets cell's row index.

    console.log(`Cell's row index: ${myCell.rowIndex}`)
    
    value: any

    Gets or sets the cell's value.

    console.log("Cell's current value:", myCell.value)
    myCell.value = "Finance"