Forum Discussion
Mengeltje
6 years agoFrequent Visitor
Date table with extra items
Hi there, What I need is a basic date table with some extra items. In 1 table I have a calender from Power BI with Year and Month (multiple years, all months per year). In the other table I hav...
amitchandak
6 years agoSuper User
Mengeltje ,In Edit query mode
https://radacad.com/append-vs-merge-in-power-bi-and-power-query
In DAX you have crossjoin
new table = Crossjoin(Table1,Table2)
new table = filter(Crossjoin(Table1,Table2), table1[A]= table2[A])
In case you join between two tables you can use summarize, calculatetable