/excel-formula-parser

A parser for excel-formula written in pure Go

Primary LanguageGoApache License 2.0Apache-2.0

excel-formula-parser

A parser for excel-formula written in pure Go

Unsupportted syntax

  • R1C1 style cell reference syntax. (had been deprecated by excel)
  • intersection operator (whitespace between references)

Usage

ast, _ := excelformulaparser.NewParser("=SUM(A1:B2, C$3, 4:4)").Parse()
fmt.Printf("%v", ast)