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

Formula Input

Use a formula input component outside the spreadsheet

Formula input component allows users to enter formulas, make cell selections from Spreadsheet.

Formula Input component

It can be placed anywhere inside the SpreadsheetProvider and use it part of your custom interface.

import { FormulaInput } from "@rowsncolumns/spreadsheet"

const App = () => {
  const [ value, onChange ] = useState("")
  return (
    <FormulaInput
      value={value}
      onChange={onChange}
    />
  )
}

Last updated