Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
schwinnen
Helper V
Helper V

Duplicate Table

I need to duplicate a table, with the exception that I want one of the columns to be filtered.  

I have a table that is pulled from a database.  I can just created a duplicate of the table, but it looks like it's going to run the SQL query again to refresh the new table and I don't really want that.  

In my table, there is a column called "processed by" and there are two possible values.  Let's call these values A and B.  I want to keep this original table with A and B, but then I want a duplicate table that has all the same columns but only pulls "processed by = A".  

It seems like this should be simple, but I'm having a mental block for some reason.

Any help would be appreciated.

1 ACCEPTED SOLUTION
Anonymous
Not applicable

@schwinnen - 

In DAX, you can create a Calculated Table, like this:

New Table = FILTER(<original table>, [processed by] = "A")

Cheers!

Nathan

View solution in original post

3 REPLIES 3
Vikram123
Helper I
Helper I

Don't use duplicate

use Refrence and after that put filter

I hope this will help you

Anonymous
Not applicable

@schwinnen - 

In DAX, you can create a Calculated Table, like this:

New Table = FILTER(<original table>, [processed by] = "A")

Cheers!

Nathan

@Anonymous  - That is perfect.  Thank you.

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.