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!Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.
you can try to create a dim group table
Proud to be a Super User!
you can try this
1. make sure the column names in the different tables are the same.
2. append the tables
3. group by tables
pls see the attachment below
Proud to be a Super User!
can i do with table view (dax language)
you can try to create a dim group table
Proud to be a Super User!
Hi @Chetan007 ,
Yes, you can achieve this with DAX
FinalOutput =
SUMMARIZE (
UNION (
SELECTCOLUMNS(Dataset1, "Group", Dataset1[Group], "Value", Dataset1[Value]),
SELECTCOLUMNS(Dataset2, "Group", Dataset2[Group], "Value", Dataset2[Value])
),
[Group],
"Value", SUM([Value])
)