Forum Discussion
Anonymous
8 years agoNot applicable
Difference Between DAX and calculated column
Hello! I’m' trying to figurate the difference between calculate the 'Total sales' in a column and in a measure because the output it's difference. This is mi data: So, the total ...
- 8 years ago
Hi Anonymous
This is where DAX iterators come in :)
Please try
Measure = SUMX('Data','Data'[Price] * 'Data'[Qty])
Phil_Seamark
Microsoft Employee
8 years agoHi Anonymous
This is where DAX iterators come in :)
Please try
Measure = SUMX('Data','Data'[Price] * 'Data'[Qty])