For the complete documentation index, see llms.txt. This page is also available as Markdown.

Sheet Status

Show average, count and sum of numerical values

SheetStatus uses the calculator to find Average, Count and Sum value of selected numerical fields

SheetStatus component
import { SheetStatus } from "@rowsncolumns/spreadsheet"

const App = () => {
  return (
    <SheetStatus
      sheetId={activeSheetId}
      activeCell={activeCell}
      selections={selections}
      onRequestCalculate={onRequestCalculate}
      rowCount={rowCount}
      columnCount={columnCount}
    />
  )
}

Last updated