

0 / 2 embers
0 / 3000 xp
click for more info
Complete a lesson to start your streak
click for more info
Difficulty: 3
click for more info
Not enough gems
Cost: 6 gems
1: DAX
incomplete
2: Logical Functions – IF
incomplete
3: SWITCH Function
incomplete
4: Time Intelligence Functions
incomplete
5: More Time Functions
incomplete
6: Add Columns
incomplete
7: Aggregations
incomplete
8: Aggregations As Measures
incomplete
9: Iterators
incomplete
10: Calculated Columns vs. Measures
incomplete
11: Context in DAX
incomplete
Back
ctrl+,
Next
ctrl+.
This lesson's interactive features are locked, please to keep using them
Aggregation functions in DAX aggregate a result from multiple rows in a column. These are super common DAX functions, and they form the foundation for almost every measure you'll write.
Aggregators answer "How much?", "How many?", or "What's the average?" for a column.
We've already used some of these, but let's cover more of the most common functions in a bit more detail.
The AVERAGE function calculates the mean value of a column.
Average Discount = AVERAGE(sales[sale_discount])
The COUNT function counts the number of rows that contain a value in a column.
Total Sales = COUNT(sales[sale_id])
The MIN function returns the smallest value in a column.
Minimum Quantity = MIN(sales[sale_quantity])
The MAX function returns the largest value in a column.
Maximum Quantity = MAX(sales[sale_quantity])
It may show up in teensy font at the top of the card. Just make sure it's there somewhere.
Save the project and, from the course directory, submit the CLI tests.