Question 560 of 966
Prepare the dataeasyMultiple SelectObjective-mapped

Quick Answer

The correct answer is that both Append Queries and Merge Queries are valid methods to combine data from multiple sources in Power BI, but they serve fundamentally different purposes. Append Queries stacks rows from two or more tables into a single table, functioning like a SQL UNION operation—ideal when you have identical column structures across sources, such as combining monthly sales files. Merge Queries, on the other hand, joins columns based on matching keys, similar to SQL JOINs, and is used to enrich or relate tables. On the PL-300 exam, this distinction tests your ability to choose the right transformation for the data shape required; a common trap is confusing Append for column-based consolidation or Merge for row-based stacking. Remember the memory tip: Append adds rows (think “add rows”), Merge adds columns (think “merge columns”).

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.

Which TWO of the following are valid methods to combine data from multiple sources in Power BI?

Question 1easymulti 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

Append Queries

Append Queries is a valid method to combine data from multiple sources in Power BI because it stacks rows from two or more tables into a single table, which is essential when you have similar data structures across different sources (e.g., monthly sales files). This operation is performed in Power Query Editor and corresponds to a UNION operation in SQL, making it a standard data preparation technique.

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.

  • Pivot Column

    Why it's wrong here

    Transforms data from rows to columns.

  • Append Queries

    Why this is correct

    Appends rows from one query to another.

    Related concept

    Read the scenario before looking for a memorised answer.

  • Unpivot Columns

    Why it's wrong here

    Transforms data from columns to rows.

  • Merge Queries

    Why this is correct

    Merges columns based on a matching key.

    Related concept

    Read the scenario before looking for a memorised answer.

  • Group By

    Why it's wrong here

    Aggregates data, does not combine sources.

Common exam traps

Common exam trap: answer the scenario, not the keyword

The trap here is that candidates often confuse data transformation operations (like Pivot, Unpivot, Group By) with data combination operations (Append and Merge), leading them to select options that modify existing data rather than integrate multiple sources.

Detailed technical explanation

How to think about this question

Under the hood, Append Queries in Power Query uses the Table.Combine function, which performs a union of rows without requiring matching keys, while Merge Queries uses Table.NestedJoin to perform a SQL-style JOIN (e.g., left outer, inner) based on key columns. A subtle behavior is that Append Queries will align columns by name, but if column names differ, it may create separate columns or require manual mapping; this is critical when combining data from disparate systems like CRM and ERP exports.

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

A cloud solutions architect for a retail company is evaluating services for a new workload. The correct answer here reflects best practice for the specific scenario described — not a general cloud recommendation. Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option. Cloud exam questions reward reading the constraint carefully: the same technology can be right or wrong depending on the use case.

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?

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: Append Queries — Append Queries is a valid method to combine data from multiple sources in Power BI because it stacks rows from two or more tables into a single table, which is essential when you have similar data structures across different sources (e.g., monthly sales files). This operation is performed in Power Query Editor and corresponds to a UNION operation in SQL, making it a standard data preparation technique.

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 TWO are valid ways to combine data from multiple sources in Power Query? (Choose two.)

easy
  • A.Pivot Column.
  • B.Append Queries.
  • C.Create relationships in the data model.
  • D.Merge Queries.
  • E.Group By.

Why B: Option B is correct because the Append Queries operation in Power Query combines rows from two or more tables by stacking them vertically, which is a standard way to consolidate data from multiple sources when the columns are aligned. This is distinct from merging, which combines columns based on matching keys.

Variation 2. You need to combine data from two tables in Power Query that have the same columns but different row sets. Which operation should you use?

easy
  • A.Union Queries
  • B.Group By
  • C.Append Queries
  • D.Merge Queries

Why C: Append Queries is the correct operation in Power Query when you need to combine two tables with identical columns but different row sets. It stacks the rows from the second table beneath the rows from the first table, effectively performing a union of the data. This is distinct from Merge Queries, which joins columns based on a key, and Group By, which aggregates data.

Variation 3. Which TWO options are valid methods to combine multiple tables in Power Query?

medium
  • A.Join
  • B.Concatenate
  • C.Merge
  • D.Union
  • E.Append

Why C: Option C (Merge) is correct because Merge in Power Query performs a join-like operation that combines columns from two tables based on a matching key, similar to SQL JOINs. Option E (Append) is correct because Append stacks rows from multiple tables with the same columns, akin to SQL UNION ALL. Both are native Power Query operations for combining tables.

Variation 4. You have a Power BI dataset that combines sales data from two Excel files: Sales2023.xlsx and Sales2024.xlsx. Both files have the same schema. You need to combine them into a single table without duplicating rows. What is the best approach in Power Query?

medium
  • A.Use Union in DAX.
  • B.Use Group By to summarize data.
  • C.Use Append Queries.
  • D.Use Merge Queries as a new query.

Why C: Option C is correct because Append Queries in Power Query is specifically designed to combine rows from two or more tables with the same schema into a single table, stacking them vertically without duplicating rows. This operation is performed in the Power Query Editor (M language) and is the standard approach for unioning data from multiple sources during the data preparation phase, before loading into the Power BI data model.

Last reviewed: Jun 24, 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.