The correct answer is that SUMMARIZE groups sales by product category and computes total sales. This is because SUMMARIZE is a table function in DAX that creates a new summary table by grouping rows from an existing table based on one or more specified columns—here, Product Category—and then applying an aggregation, such as SUM, to calculate a measure like Total Sales. On the Microsoft Power BI Data Analyst PL-300 exam, this function often appears in DAX Studio queries to test your understanding of table manipulation and grouping logic, with a common trap being confusion between SUMMARIZE and the more efficient SUMMARIZECOLUMNS function. Remember that SUMMARIZE returns a physical table, making it ideal for grouping and aggregation in calculated tables or queries. A helpful memory tip: think of SUMMARIZE as “group by and sum,” where the function’s name itself hints at summarizing data into a condensed, aggregated table.
PL-300 Prepare the data Practice Question
This PL-300 practice question tests your understanding of prepare the data. Read the scenario carefully and evaluate each option against the stated constraints before committing to an answer. After answering, compare your reasoning against the explanation and wrong-answer breakdown below. Once you have made your selection, read the full explanation to reinforce the concept and understand why each distractor is designed to mislead on exam day.
Exhibit
Refer to the exhibit.
EVALUATE
SUMMARIZE(
'Sales',
'Product'[Category],
"Total Sales", SUM('Sales'[Amount])
)
You are reviewing a DAX query in DAX Studio. The exhibit shows a query that returns a table. What is the purpose of the SUMMARIZE function in this query?
Answer the question above first, then reveal the full breakdown to understand why each option is right or wrong.
Correct answer & explanation
✓
To group sales by product category and compute total sales
Option A is correct because the SUMMARIZE function in DAX is used to group rows from a table based on one or more columns (here, Product Category) and then compute an aggregated value (Total Sales) using a SUM expression. The query returns a new table with one row per category and the corresponding total sales, which is the standard purpose of SUMMARIZE for grouping and aggregation.
Key principle: Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option.
Answer analysis
Option-by-option breakdown
For each option: why learners choose it and why it is or isn't the right answer here.
✓
To group sales by product category and compute total sales
Why this is correct
SUMMARIZE groups by Category and sums Amount.
Related concept
Read the scenario before looking for a memorised answer.
✗
To add a calculated column to the Sales table
Why it's wrong here
SUMMARIZE returns a new table, not a column.
✗
To add a new row for total sales per category
Why it's wrong here
SUMMARIZE creates a new table, not add rows to existing.
✗
To filter the Sales table by Product Category
Why it's wrong here
SUMMARIZE groups, not filters.
Common exam traps
Common exam trap: answer the scenario, not the keyword
The trap here is that candidates confuse SUMMARIZE with functions that add calculated columns (ADDCOLUMNS) or filter tables (FILTER), leading them to pick options B or D, when in fact SUMMARIZE is specifically for grouping and aggregation.
Detailed technical explanation
How to think about this question
Under the hood, SUMMARIZE performs a GROUP BY operation on the specified columns and then evaluates the aggregation expressions in the context of each group. A subtle behavior is that SUMMARIZE can also return additional columns from related tables without an explicit GROUP BY, which can lead to unexpected row expansion if not used carefully. In real-world scenarios, SUMMARIZE is often replaced by GROUPBY for better performance and clearer intent, as GROUPBY avoids the implicit context transition that SUMMARIZE applies.
KKey Concepts to Remember
Read the scenario before looking for a memorised answer.
Find the constraint that changes the correct option.
Eliminate answers that are true in general but not in this case.
TExam Day Tips
→Watch for words such as best, first, most likely and least administrative effort.
→Review why wrong options are wrong, not only why the correct option is correct.
Key takeaway
Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option.
Real-world example
How this comes up in practice
An e-commerce site experiences heavy traffic on Black Friday and near-zero traffic during off-peak weeks. Rather than provisioning permanent large VMs, the team uses auto-scaling groups that add capacity automatically under load and reduce it overnight. Questions like this test whether you understand elasticity, availability zones, and cloud compute scaling patterns.
What to study next
Got this wrong? Here's your next step.
Identify which exam domain this question belongs to, review the core concept, then practise similar questions from the same domain.
Prepare the data — This question tests Prepare the data — Read the scenario before looking for a memorised answer..
What is the correct answer to this question?
The correct answer is: To group sales by product category and compute total sales — Option A is correct because the SUMMARIZE function in DAX is used to group rows from a table based on one or more columns (here, Product Category) and then compute an aggregated value (Total Sales) using a SUM expression. The query returns a new table with one row per category and the corresponding total sales, which is the standard purpose of SUMMARIZE for grouping and aggregation.
What should I do if I get this PL-300 question wrong?
Identify which exam domain this question belongs to, review the core concept, then practise similar questions from the same domain.
What is the key concept behind this question?
Read the scenario before looking for a memorised answer.
About these practice questions
Courseiva creates original exam-style practice questions with explanations and wrong-answer analysis. It does not publish real exam questions, exam dumps, or protected exam content. Learn why practice questions differ from exam dumps →
Share a tip, memory trick, or ask about the reasoning behind this question. Do not post real exam questions, leaked content, braindumps, or copyrighted exam material. Comments are moderated and may be removed without notice.
This PL-300 practice question is part of Courseiva's free Microsoft certification practice question bank. Courseiva provides original exam-style practice questions with explanations, topic-based practice, mock exams, readiness tracking, and study analytics to help learners prepare for the PL-300 exam.
Question Discussion
Share a tip, memory trick, or ask about the reasoning behind this question. Do not post real exam questions, leaked content, braindumps, or copyrighted exam material. Comments are moderated and may be removed without notice.
Sign in to join the discussion.