DAX Playground
Power BI measure language
Write DAX measures like SUM, CALCULATE, and FILTER against sample Sales tables — the formula language behind Power BI and Microsoft analytics.
What you get when you open DAX Studio.
Measure editor
Write named measures with table[column] syntax
Evaluate panel
Measure → value results in a structured table
Schema preview
Loaded tables and sample schema beside the editor
⌘/Ctrl+Enter
Evaluate measures from the keyboard or toolbar
Opens in the DAX Studio workspace.
Total Revenue = SUM(Sales[Revenue])
West Revenue = CALCULATE(SUM(Sales[Revenue]), FILTER(Sales, Sales[Region] = "West"))
Avg Units = AVERAGE(Sales[Units])