Duplicate Data VS Reference data in Power Bi docx

Опубликовано: 01 Май 2026
на канале: Pro Computer Skills Academy
5
2

difference between *Duplicate Data* and *Reference Data* in **Power BI (Power Query Editor)**.

---

🔹 1. Duplicate Data

When you *Duplicate* a query in Power BI:

It *creates a completely independent copy* of the original query.
Any changes you make in the duplicated query *do not affect the original* (and vice versa).
Both queries will *load the same data* from the source independently.
This can increase memory usage and refresh time if the dataset is large.

✅ *Use Case:*

When you want to create multiple versions of the same dataset with *different transformations* applied.
Example: One duplicate for cleaning sales data, another duplicate for creating a lookup table.

---

🔹 2. Reference Data

When you *Reference* a query in Power BI:

It creates a **new query linked to the original query**.
It doesn’t load data from the source again. Instead, it *uses the already loaded query* as its starting point.
If you modify the original query, the reference query will also reflect those changes.
More efficient than duplication since data is only loaded **once**.

✅ *Use Case:*

When you want to *reuse the same cleaned dataset* in multiple queries.
Example:

You clean a "Sales" query once.
Then, create references: one for a Sales Summary table, another for Customer Insights, without duplicating transformations.

---

🔹 Key Difference (Quick Table)

| Feature | Duplicate Data | Reference Data |
| ----------------- | ------------------------------------------------------------ | ------------------------------------------------- |
| Data Load | Loads data again from source | Uses data from original query |
| Independence | Fully independent | Dependent on original query |
| Performance | Heavier, slower for large data | Faster, efficient |
| Effect of Changes | Changes in original do NOT affect duplicate | Changes in original DO affect reference |
| Best Use Case | Different transformations from the same source independently | Reusing cleaned/prepared data in multiple queries |

---

👉 *In short:*

*Duplicate* = independent copy.
*Reference* = dependent shortcut.

---

Would you like me to also create a *visual diagram* showing the difference (like flow arrows of duplicate vs reference in Power Query)?