Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
There are two tables A and B and I want to merge below tables into the new one with subjects when IEYN and NSYN =yes.
The below dax which i created combining both yes and no subjects
Table A | |
Subject | IEYN |
Subject 1 | Yes |
Subject 2 | Yes |
Subject 3 | Yes |
Subject 4 | Yes |
Subject 5 | No |
Table B | |
Subject | NSYN |
Subject 1 | Yes |
Subject 2 | Yes |
Subject 3 | Yes |
Subject 4 | No |
Subject 5 | Yes |
hi @Anonymous
try replacing FILTER with CALCULATETABLE
Thanks Amit. There are other columns in the tables so i want just the subjects of the both tables in the new table with condition [IEYN] ="Yes" (Table A) and NSYN = "Yes" (Table B)