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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
Anonymous
Not applicable

Create a table from slicer

Hi ,

I have one table (tabla 1) with 10 columns and I meed to select values from a column (in a slicer) an create a new table (tabla 2) with the same columns in order to do an EXCLUDE(tabla 1 , tabla2) and obtain a tabla 3 with the values excluded between them.

 

Can you help me ? 

Thanks

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @v-jialluo-msft 
Thanks for your replay ,
Just a correction, only I need to build the new table PrivilegedAccounts2 (in your case) came from the Table PrivilegedAccounts (table 1) in order to re calculate other measures,.

Thanks

 

View solution in original post

4 REPLIES 4
Anonymous
Not applicable

Hi I create a new table creating a FILTER(tabla, any filter) in order to create an updated table from the original and then create a FLAG in the new one.

Thanks

Anonymous
Not applicable

Hi @v-jialluo-msft 
Thanks for your replay ,
Just a correction, only I need to build the new table PrivilegedAccounts2 (in your case) came from the Table PrivilegedAccounts (table 1) in order to re calculate other measures,.

Thanks

 

v-jialluo-msft
Community Support
Community Support

Hi @Anonymous ,

 

Please follow these steps:

(1) Create a new measure

FLAG =
IF (
    ISFILTERED ( 'PrivilegedAccounts'[DomainAndSam] ),
    IF (
        MAX( 'PrivilegedAccounts2'[DomainAndSam] )
            IN VALUES ( PrivilegedAccounts[DomainAndSam] ),
        1,0
    )
)

 

(2) Filter numeric values

vjialluomsft_0-1669188829526.png

 

 

(3)Final output

vjialluomsft_1-1669188829528.png

 

 

Best Regards,

Gallen Luo

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Anonymous
Not applicable

Hi ,

I have 1 table (Table1) with 10 columns and I need to create a new table (Table2) (phiscally) exactly the same columns as Table1 but except the rows selected from slicer from a column from Table1 .

This is because I need to create a Table3 (phisically) from both tables with the DAX function EXCEPT(Table1,Table2) .

 

Can you help me ? 

Thanks 

Carlos

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

Check out the November 2025 Power BI update to learn about new features.

Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors