Question 651 of 966
Model the datamediumMultiple SelectObjective-mapped

Quick Answer

The answer is to create a summary table that pre-aggregates data for better performance, along with generating a date table and building a bridge table for many-to-many relationships. These are valid reasons because calculated tables are stored in memory via DAX, allowing you to enforce a continuous date range for time intelligence functions like TOTALYTD, or to pre-join and summarize data to reduce query load on the underlying source. On the PL-300 exam, this topic tests your understanding of when to use calculated tables versus measures or calculated columns—a common trap is thinking you need a calculated table for simple row-level calculations, which should instead be a column. Remember the three core use cases: date tables for time intelligence, bridge tables for complex relationships, and what-if tables for parameter-driven analysis. A helpful memory tip is “DBW”—Date, Bridge, What-if—to recall the three valid reasons when you see this question on the exam.

PL-300 Model the data Practice Question

This PL-300 practice question tests your understanding of model 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.

Which THREE of the following are valid reasons to create a calculated table in Power BI?

Question 1mediummulti select
Full question →

Answer choices

Why each option matters

Answer the question above first, then reveal the full breakdown to understand why each option is right or wrong.

Correct answer & explanation

To create a date table that is not available in the data source.

Option C is correct because calculated tables in Power BI are created using DAX and stored in memory, allowing you to generate a date table when no suitable date table exists in the data source. This is a common pattern to ensure a complete date range for time intelligence functions, as Power BI requires a continuous date table for functions like TOTALYTD or SAMEPERIODLASTYEAR.

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 add a column that computes a value based on other columns in the same table.

    Why it's wrong here

    A calculated column (not table) is used for row-level computations within a table.

  • To combine two tables by merging columns from one table into another.

    Why it's wrong here

    Merging tables should be done in Power Query to avoid performance issues.

  • To create a date table that is not available in the data source.

    Why this is correct

    CALENDAR or CALENDARAUTO can create a date table for time intelligence.

    Related concept

    Read the scenario before looking for a memorised answer.

  • To create a disconnected table for use in what-if analysis (e.g., parameter slicers).

    Why this is correct

    A disconnected table can be used with measures to simulate parameter selection.

    Related concept

    Read the scenario before looking for a memorised answer.

  • To create a summary table that pre-aggregates data for better performance.

    Why this is correct

    Pre-aggregating data in a calculated table can improve report performance for large datasets.

    Related concept

    Read the scenario before looking for a memorised answer.

Common exam traps

Common exam trap: answer the scenario, not the keyword

The trap here is that candidates often confuse calculated tables with calculated columns or Power Query merges, thinking any table-like operation qualifies, but Power BI strictly distinguishes between row-level calculations (calculated columns) and table-level transformations (calculated tables).

Detailed technical explanation

How to think about this question

Calculated tables are evaluated at data refresh time and stored in the model, consuming memory. They are ideal for creating static reference tables like a date dimension with all dates between a start and end date using CALENDAR or CALENDARAUTO, or for creating disconnected parameter tables for what-if analysis. A subtle behavior is that calculated tables cannot be refreshed incrementally and are recalculated only when the model is refreshed, which can impact performance if the underlying source data changes frequently.

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.

Related practice questions

Related PL-300 practice-question pages

Use these pages to review the topic behind this question. This is how one missed question becomes focused revision.

Practice this exam

Start a free PL-300 practice session

Short sessions build daily habit. Longer sessions build exam-day stamina. Try a timed session to simulate real conditions.

FAQ

Questions learners often ask

What does this PL-300 question test?

Model the data — This question tests Model the data — Read the scenario before looking for a memorised answer..

What is the correct answer to this question?

The correct answer is: To create a date table that is not available in the data source. — Option C is correct because calculated tables in Power BI are created using DAX and stored in memory, allowing you to generate a date table when no suitable date table exists in the data source. This is a common pattern to ensure a complete date range for time intelligence functions, as Power BI requires a continuous date table for functions like TOTALYTD or SAMEPERIODLASTYEAR.

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 →

How Courseiva writes practice questions · Editorial policy

Same concept, more angles

4 more ways this is tested on PL-300

These questions test the same concept from different angles. Work through them to make sure you can recognise it however the exam phrases it.

Variation 1. Which THREE of the following are valid reasons to create a calculated table in Power BI?

hard
  • A.Replace incremental refresh
  • B.Create a summary table that aggregates data from another table
  • C.Modify the source data before loading
  • D.Create a crossjoin of two dimension tables
  • E.Create a date table that is not available in the source

Why B: Options A, B, and D are correct. Option C is wrong because you cannot change the source table; calculated tables are derived. Option E is wrong because calculated tables are static and not a replacement for incremental refresh.

Variation 2. Which TWO DAX functions can be used to create a calculated table in Power BI?

medium
  • A.SELECTEDVALUE
  • B.FILTER
  • C.CALCULATE
  • D.SUMMARIZECOLUMNS
  • E.SUMX

Why B: Options A and C are correct. SUMMARIZECOLUMNS and FILTER return tables. Option B is wrong because SUMX returns a scalar. Option D is wrong because SELECTEDVALUE returns a scalar. Option E is wrong because CALCULATE returns a scalar.

Variation 3. Which TWO of the following are valid DAX functions for creating a calculated table?

easy
  • A.SUM
  • B.COUNT
  • C.FILTER
  • D.CALENDAR
  • E.SELECTEDVALUE

Why C: Options B and D are correct. FILTER returns a table. CALENDAR returns a table. Option A is wrong because SUM returns a scalar. Option C is wrong because COUNT returns a scalar. Option E is wrong because SELECTEDVALUE returns a scalar.

Variation 4. Which TWO of the following are valid reasons to use a calculated table in Power BI instead of a table from the source?

medium
  • A.To create a bridge table for many-to-many relationships
  • B.To aggregate data from the source before loading
  • C.To create a date table for time intelligence
  • D.To enable incremental data refresh
  • E.To reduce the overall storage size of the model

Why A: Options B and D are correct. Calculated tables can be used to create a date table or to create a bridge table for many-to-many relationships. Option A is wrong because calculated tables cannot be incremental refreshed. Option C is wrong because calculated tables are stored in the model, not to reduce storage. Option E is wrong because calculated tables are not for aggregating data at source; they are created in the model.

Last reviewed: Jun 11, 2026

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.

Loading comments…

Sign in to join the discussion.

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.