Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hi,
I Have two tables, where table A has unique values and tables B(dynamically updated) will always contain a few records from table A. Table A
Table B
When I do UNION, I get duplicate rows.
I have also tried using
Solved! Go to Solution.
@Anonymous
This is because open High, low values has some diff.
Use Summarize and take min and max of that
Try like
summarize(UNION(VALUES('Table 2'),VALUES('Table 1')),[Date],"Open",max([Open]),"Low",min([Low]),"High",max([High]))
@Anonymous
This is because open High, low values has some diff.
Use Summarize and take min and max of that
Try like
summarize(UNION(VALUES('Table 2'),VALUES('Table 1')),[Date],"Open",max([Open]),"Low",min([Low]),"High",max([High]))
UNION in DAX is the same as UNIONALL in SQL. Wrap the whole thing inside DISTINCT()
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.