Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowJuly 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more
Hello All,
I am facing an issue in creating a custom table using DAX as mentioned below.
I have two tables with below format
I need a new table in the below format using DAX
Please help.
Thanks,
Sam
Solved! Go to Solution.
Hi @sam021083
I used the SEARCH function to help match.
Table =
SELECTCOLUMNS(
DISTINCT(
GENERATE(
FILTER(ALL('Table1'[Flag]),LEN('Table1'[Flag])>0) ,
FILTER(
'Table2',
SEARCH('Table2'[Exception],'Table1'[Flag],1,0)>0 && LEN(TRIM('Table2'[Exception]))>0)
)
)
,"Flag" , [Flag] , "Exception" , [Exception]) Hi @sam021083
I used the SEARCH function to help match.
Table =
SELECTCOLUMNS(
DISTINCT(
GENERATE(
FILTER(ALL('Table1'[Flag]),LEN('Table1'[Flag])>0) ,
FILTER(
'Table2',
SEARCH('Table2'[Exception],'Table1'[Flag],1,0)>0 && LEN(TRIM('Table2'[Exception]))>0)
)
)
,"Flag" , [Flag] , "Exception" , [Exception]) Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.
Join Fabric Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.
| User | Count |
|---|---|
| 22 | |
| 22 | |
| 18 | |
| 16 | |
| 13 |
| User | Count |
|---|---|
| 63 | |
| 41 | |
| 40 | |
| 39 | |
| 38 |