Forum Discussion
Anonymous
3 years agoNot applicable
creating new table based on two table condition
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 EligibleSubj...
amitchandak
3 years agoSuper User
Anonymous , what if the issue ?
You can try like
filter(Union(TableA, TableB), [IEYN] ="Yes")
Anonymous
3 years agoNot applicable
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)