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 28 - August 9 | Final Round of the Power BI Dataviz World Championships. This is 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.
If you love stickers, then you will definitely want to check out our community sticker challenge, Barcelona edition!
Check out the July 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 30 | |
| 28 | |
| 25 | |
| 24 | |
| 16 |
| User | Count |
|---|---|
| 48 | |
| 32 | |
| 17 | |
| 16 | |
| 16 |