From 5eecb2594cb70f8649ffa9a2586e5e4713a32365 Mon Sep 17 00:00:00 2001 From: Darren Gosbell Date: Wed, 17 Apr 2024 12:11:29 +1000 Subject: [PATCH] fixing typo --- docs/tutorials/writing-dax-queries.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tutorials/writing-dax-queries.md b/docs/tutorials/writing-dax-queries.md index 0eb7fb73..c46e388c 100644 --- a/docs/tutorials/writing-dax-queries.md +++ b/docs/tutorials/writing-dax-queries.md @@ -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