How can I combine 2 tables which enumerate all the possible values in a column

Viewed 25

I have 2 tables in PowerBI

Table1

Name
A
B
C

Table 2

Level
1
2

I want to create 3rd table in PowerBI which enumerate all the possible values in a column of each table. i.e. I want to create this

Table 3

Name Level
A 1
A 2
B 1
B 2
C 1
C 2

Can you please tell me how this can be done in PowerBI?

1 Answers
Table 3 = CROSSJOIN('Table 1','Table 2')
Related