I want to combine two tables in power BI based on common columns in the table.
Table 1:
Col1 | Col2 |
11 | AAA |
11 | BBB |
Table 2
Col3 |
3G |
5H |
Table 3 (combined)
Col1 | Col2 | Col3 |
11 | AAA | 3G |
11 | BBB | 3G |
11 | AAA | 5H |
11 | BBB | 5H |
How to combine this with cross join?
It can be done by adding a custom column to table 1.