Skip to main content

Last updated by Errin O'Connor, Founder & Chief AI Architect, EPC Group

Power BI lets you create new tables from existing ones using DAX calculated tables or Power Query (M) transformations. Use calculated tables for summary tables, lookup tables, and filtered subsets. Use Power Query for transformations that run during data refresh. This guide covers both methods with DAX examples.

Key Facts

  • DAX calculated tables run in-memory after data loads. They consume model RAM but do not slow refresh.
  • Power Query tables transform data during refresh. They are more efficient for large datasets.
  • Key DAX functions for table creation: SELECTCOLUMNS, SUMMARIZE, FILTER, ALL, CROSSJOIN, UNION, CALENDAR.
  • Calculated tables live in the Power BI data model and appear in the Fields pane alongside imported tables.
  • EPC Group: Power BI architects with Microsoft consulting since 1997. Authors of a bestselling Microsoft Press Power BI book.
Back to Blog

Power BI How To Build Table With DAX — Create Tables From Other Tables (SELECTCOLUMNS, SUMMARIZE, UNION, CROSSJOIN)

Power BI how to build table with DAX: use calculated tables (SELECTCOLUMNS, SUMMARIZE, FILTER, ADDCOLUMNS, UNION, CROSSJOIN, CALENDAR) when you need an in-memory derived table, or use Power Query (M) when refresh-time transformation is the better fit. This guide gives both methods with copy-paste examples from EPC Group's 1,500+ Power BI deployments.

Errin O'Connor
8 min read

How to Create a Table from Another Table in Power BI

Power BI lets you create new tables from existing ones using DAX calculated tables or Power Query (M) transformations. Use calculated tables for summary tables, lookup tables, and filtered subsets. Use Power Query for transformations that run during data refresh. This guide covers both methods with DAX examples.

Key facts

  • DAX calculated tables run in-memory after data loads. They consume model RAM but do not slow refresh.
  • Power Query tables transform data during refresh. They are more efficient for large datasets.
  • Key DAX functions for table creation: SELECTCOLUMNS, SUMMARIZE, FILTER, ALL, CROSSJOIN, UNION, CALENDAR.
  • Calculated tables live in the Power BI data model and appear in the Fields pane alongside imported tables.
  • EPC Group: Power BI architects with Microsoft consulting since 1997. Authors of a bestselling Microsoft Press Power BI book.

Method 1 — DAX calculated tables

DAX calculated tables let you create a new table using a DAX formula. The table is calculated when the model loads and stored in memory.

Create a calculated table in Power BI Desktop

  1. Open Power BI Desktop and load your data model.
  2. Go to Modeling → New Table in the ribbon.
  3. In the formula bar, type your DAX expression and press Enter.
  4. The new table appears in the Fields pane on the right.

SELECTCOLUMNS — select specific columns

Use SELECTCOLUMNS to create a new table with only the columns you need.


SalesSubset =
SELECTCOLUMNS(
    Sales,
    "Order ID", Sales[OrderID],
    "Customer", Sales[CustomerName],
    "Amount", Sales[SaleAmount]
)

This creates a three-column table from the Sales table. Column names in quotes become the new column headers.

SUMMARIZE — create a summary table

SUMMARIZE groups rows and aggregates values, similar to a GROUP BY in SQL.


SalesByRegion =
SUMMARIZE(
    Sales,
    Sales[Region],
    Sales[Category],
    "Total Sales", SUM(Sales[SaleAmount]),
    "Order Count", COUNTROWS(Sales)
)

This creates a summary table grouped by Region and Category with two calculated columns.

FILTER — create a filtered subset

FILTER returns rows from a table that meet a condition.


ActiveCustomers =
FILTER(
    Customers,
    Customers[Status] = "Active"
)

Combine FILTER with SELECTCOLUMNS to create a filtered subset with selected columns only.

CALENDAR — create a date table

Use CALENDAR or CALENDARAUTO to generate a date table for time intelligence calculations.


DateTable =
CALENDAR(DATE(2020, 1, 1), DATE(2026, 12, 31))

Add columns for Year, Month, Quarter, and Weekday using ADDCOLUMNS wrapped around CALENDAR.

Method 2 — Power Query (M) transformations

Power Query runs during data refresh. It is more efficient for large tables because transformations happen before data loads into memory.

Duplicate a table in Power Query

  1. Open Power BI Desktop and click Transform data.
  2. In the Queries pane on the left, right-click the source table and select Duplicate.
  3. The duplicate appears as a new query. Rename it in the Properties panel.
  4. Apply filters, remove columns, or change data types as needed.
  5. Click Close & Apply to load the new table into the model.

Reference a table in Power Query

Use Reference instead of Duplicate when you want the new table to reflect all changes made to the source query automatically. Right-click the source table and choose Reference.

Calculated table vs Power Query: when to use each

Scenario Recommended method
Summary aggregations (GROUP BY logic) DAX SUMMARIZE
Lookup / reference tables from existing data DAX SELECTCOLUMNS or Power Query
Large filtered subset (millions of rows) Power Query (runs at refresh, not in memory)
Date dimension table DAX CALENDAR / CALENDARAUTO
Transformations using M functions Power Query
Cross-join or union of two tables DAX CROSSJOIN or UNION

Frequently asked questions

Can I create a table from a measure in Power BI?

No. Measures return scalar values, not tables. Use DAX table functions (SUMMARIZE, SELECTCOLUMNS) instead. You can reference measures inside SUMMARIZE to aggregate values in the new table.

Do calculated tables slow down report performance?

Calculated tables consume model RAM because they are stored in the Vertipaq engine. They do not slow refresh. But a large calculated table increases model file size and memory requirements. Use Power Query transformations for very large tables.

Can I create relationships between a calculated table and other tables?

Yes. Calculated tables support relationships just like imported tables. Define the relationship in the Model view using drag-and-drop or the Manage Relationships dialog.

What is the difference between SUMMARIZE and SUMMARIZECOLUMNS?

SUMMARIZECOLUMNS is the newer, more efficient function. It is preferred for most grouping scenarios because it handles blank rows better and supports multiple filter contexts. Use SUMMARIZE for legacy compatibility or when SUMMARIZECOLUMNS produces unexpected blanks.

Can I use a calculated table as a slicer source?

Yes. Any table in the model — including calculated tables — can drive a slicer. This is a common pattern for dynamic slicer lists that filter based on the current data.

Talk to a Power BI data architect

EPC Group has designed data models for Fortune 500 companies handling billions of rows. Call (888) 381-9725 or request a 30-minute discovery call.

DAX
-- Create a calculated table that projects a subset of columns:
SalesSubset =
SELECTCOLUMNS(
    Sales,
    "Order ID", Sales[OrderID],
    "Customer", Sales[CustomerName],
    "Amount",   Sales[SaleAmount]
)

Related Power BI & Microsoft guides

Related Resources

Continue exploring power bi insights and services

Why Organizations Choose EPC Group

EPC Group is a Houston-based Microsoft consulting firm with enterprise implementation since 1997 experience and over 10,000 successful deployments across Power BI, Microsoft Fabric, SharePoint, Azure, Microsoft 365, and Copilot. We serve organizations across all industries including Fortune 500, federal agencies, healthcare, financial services, government, manufacturing, energy, education, retail, technology, and global enterprises.

What sets EPC Group apart is our governance-first approach. Every engagement begins with a security and compliance assessment. Our team of senior architects brings hands-on delivery experience across HIPAA, SOC 2, FedRAMP, and CMMC environments. We own outcomes, not hours.

  • Fixed-fee accelerators with predictable pricing and defined deliverables
  • Senior architect engagement on every project, not rotating juniors
  • Compliance-native delivery for regulated industries
  • End-to-end coverage from strategy through 24/7 managed services
  • 11,000+ enterprise engagements refined into repeatable, risk-controlled patterns

Call (888) 381-9725 or email contact@epcgroup.net for a free assessment.

Power BI Strategy: 2026 Considerations for How To Create A Table From Another Table In Power BI

Power BI capacity sizing in 2026 starts with the F-SKU economics: F2 ($263/mo) covers small workloads with up to 4 GB of memory and roughly 30 reports, F4 ($526/mo) handles a typical mid-market deployment with semantic-model refresh windows under 10 minutes, and F64 (~$8,410/mo (PAYG)) is the sweet spot for enterprises consuming Power BI alongside Microsoft Fabric data engineering, lakehouse storage, and real-time intelligence. Capacity right-sizing should be revisited every 90 days because Microsoft adjusts F-SKU memory allocations, paginated report performance, and Direct Lake mode availability with each major service update.

Direct Lake mode has changed the economics of enterprise Power BI in 2026: instead of importing data into Vertipaq, semantic models now query OneLake-resident Parquet files at near-Import-mode performance without the refresh-window cost. For a Fortune 500 finance organization migrating from a 30-minute Import-mode refresh, the equivalent Direct Lake model typically queries fact data in under 800 ms while removing the entire refresh-orchestration job from Azure Data Factory.

Decision factors EPC Group evaluates

See related EPC Group services at /services or schedule a discovery call at /contact.

Related Microsoft Guides

Related reading

AI assistant — not human