xls-rs 0.1.2

A powerful CLI tool and library for spreadsheet manipulation with pandas-style operations. Supports CSV, Excel (XLSX, XLS, ODS), Parquet, and Avro formats with formula evaluation, data transformation, and comprehensive analytics capabilities.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Formula evaluation module
//!
//! Supports Excel-like formulas: SUM, AVERAGE, MIN, MAX, COUNT, IF, CONCAT, VLOOKUP, etc.

mod evaluator;
mod functions;
mod parser;
mod types;

pub use evaluator::FormulaEvaluator;
#[allow(unused_imports)]
pub use types::FormulaResult;