Data Analysis Expressions (DAX) is a formula language introduced by Microsoft in Power BI, Power Pivot and Analysis Services Tabular to define calculations and queries.

DAX Formatter is a free tool by SQLBI that transform your raw DAX formulas into clean, beautiful and readable code. The syntax rules used improves the readability of the expressions – learn more here: Rules for DAX code formatting »

A lightweight version of this tool (HTML only) is also available. Lite version »


Syntax

You can format any DAX query and expression in the form:
  • EVALUATE <exp>
  • Table[column] = <exp>
  • Table[measure] := <exp>
  • Table = <exp>
  • [measure] := <exp>
  • [measure] = <exp>
  • measure := <exp>
  • measure = <exp>
  • = <exp>
  • <exp>

API

You can call the service via standard HTTP requests. How to use API »

Terms of Use

By using DAX Formatter by SQLBI you are agreeing to the following conditions:
DAX Formatter is not working as expected?
Please, fill out the form as completely as possible.

Note: the current formula will be automatically attached to the request.




This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.




Latest Changes

[Nov 27, 2019] Improvements formatting code with non standard separators

Ignore separators in metadata, literals and comments in case of non standard separators (“,” as list separator and “.” as decimal separator) that are switched before and after formatting.