Skip to content

Commit

Permalink
fixing typo
Browse files Browse the repository at this point in the history
  • Loading branch information
dgosbell committed Apr 17, 2024
1 parent 912f81d commit 5eecb25
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/tutorials/writing-dax-queries.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ So you can run `EVALUATE Customer` to output all the rows in the customer table

![](./evaluate-customer.png)

But you don't just have to use a table name, you can use any function that returns a table. To get a distinct list of all the values in a column you can use the [VALUES](https://dax.guide/values) function which returns a table with a single row with all the unique values from the specified column.
But you don't just have to use a table name, you can use any function that returns a table. To get a distinct list of all the values in a column you can use the [VALUES](https://dax.guide/values) function which returns a table with a single column with all the unique values from the specified column.

```dax
EVALUATE
Expand Down

0 comments on commit 5eecb25

Please sign in to comment.