Spreadsheet Formulas Playground
Excel-style analytics for business students
Full spreadsheet studio with Excel-style grid, formula bar, open/export .csv and .xlsx, and 400+ functions via HyperFormula — entirely in your browser.
What you get when you open Spreadsheet Studio.
Multi-sheet grid
Tabs, formula bar, and HyperFormula recalculation
Charts
Build simple charts from selected ranges
Import / export
Open CSV/XLSX and download results
Large sheet viewport
Up to 5,000×26 with virtual scrolling
Opens in the Spreadsheet Studio workspace.
# Revenue model — use Excel formulas with cell references
# Labels
A1 = Region
B1 = Q1
C1 = Q2
D1 = Total
# Data
A2 = West
B2 = 1200
C2 = 1400
D2 = =SUM(B2:C2)
A3 = East
B3 = 980
C3 = 1100
D3 = =SUM(B3:C3)
A4 = South
B4 = 740
C4 = 850
D4 = =SUM(B4:C4)
# Summary row
A5 = Total
B5 = =SUM(B2:B4)
C5 = =SUM(C2:C4)
D5 = =SUM(D2:D4)
A6 = Average Deal
B6 = =AVERAGE(B2:B4)
C6 = =AVERAGE(C2:C4)
D6 = =IF(D5>3000,"Strong quarter","Review pipeline")
show A1:D6