The real wordsTheory
DAX
DAX (Data Analysis Expressions)The formula language of Power BI, Power Pivot and Analysis Services. It looks like Excel's formula language and behaves differently, because it works on whole columns and tables rather than on cells.
Three things can be written in it: a calculated column, a measure, and a calculated table.
There is no A1 in DAX. A formula refers to Table[Column], never to a cell, so a formula cannot depend on where it happens to sit.
Check against your class slides.