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!View all the Fabric Data Days sessions on demand. View schedule
I am trying to create a virtual table but I think I am having syntax issues. can someone correct this into a working DAX code please
T1 = ALL(tableA[col1],tableA[col2]),
T2 = ALL(tableB[col1],tableB[col2]),
return UNION(T1,T2)
Solved! Go to Solution.
That did not work for me but this did
My Table =
VAR T1 = SUMMARIZE('TableA','TableA'[Call_ID])
VAR T2 = SUMMARIZE('TableB','TableB'[Call_ID])
RETURN UNION(T1,T2)
That did not work for me but this did
My Table =
VAR T1 = SUMMARIZE('TableA','TableA'[Call_ID])
VAR T2 = SUMMARIZE('TableB','TableB'[Call_ID])
RETURN UNION(T1,T2)
ALL(tableA[col1],tableA[col2])
UNION
ALL(tableB[col1],tableB[col2])
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!