Elements of DAX 02-02: Summary Query Concepts

preview_player
Показать описание
In this video, Brian Grant helps you get how Summary Queries are structured and how that produces the results you need in Power BI. You'll understand their different sections and see how to go from the Power BI user interface to a drawn visual.

------------
Don't forget to subscribe to our channel for the latest Power BI, Power Platform, Azure, and Data Analytics content.

At CSG Pro, we love learning and sharing new technologies, processes, and solutions to help you be victorious in your role.

Work with us:

Visit our blog:
Рекомендации по теме
Комментарии
Автор

Thanks Brian for sharing your efforts and hardwork. Clearly there's so much time and effort involved in designing the course and the presentation layout.

khardu
Автор

I am experimenting with DAX Studio and running into an issue with the external filter written like this "Mini[Dish] IN { "Burger", "Salad"}. All the other filter lines work (commented out). From the error message, it looks like there is no row context. Any thoughts? Thanks.

EVALUATE
SUMMARIZECOLUMNS(
Mini[Dish],
Mini[Type],
--FILTER(Mini, Mini[Dish] = "Pasta"),
--FILTER( ALL(Mini[Dish]), Mini[Dish] = "Pasta"),
--FILTER( ALL(Mini[Dish]), Mini[Dish] IN {"Burger", "Salad"}),
--FILTER( ALL(Mini[Dish]), Mini[Dish] IN {"Burger", "Pasta"}),
--TREATAS ( {"Burger", "Pasta"}, Mini[Dish] ),
--Mini[Dish] IN {"Burger", "Pasta"},

"Total Units", [Total Units]
)

retamapark
Автор

This is the error message "Query (10, 2) A single value for column 'Dish' in table 'Mini' cannot be determined. This can happen when a measure formula refers to a column that contains many values without specifying an aggregation such as min, max, count, or sum to get a single result."

retamapark