> For the complete documentation index, see [llms.txt](https://docs.rowsncolumns.app/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.rowsncolumns.app/configuration/components/sheet-status.md).

# Sheet Status

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

<figure><img src="/files/soXLJzwjJpLNZQiZ9CzF" alt=""><figcaption><p>SheetStatus component</p></figcaption></figure>

```tsx
import { SheetStatus } from "@rowsncolumns/spreadsheet"

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